From 60ef778f6691323c39e7b62332b42c2159900b96 Mon Sep 17 00:00:00 2001 From: cccs-jh <63320703+cccs-jh@users.noreply.github.com> Date: Wed, 3 May 2023 13:16:41 -0400 Subject: [PATCH] Fix typo --- test/test_tag_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_tag_helper.py b/test/test_tag_helper.py index 964640a5..b790adc9 100644 --- a/test/test_tag_helper.py +++ b/test/test_tag_helper.py @@ -34,7 +34,7 @@ def test_add_tag(value, expected_tags, tags_were_added): tag = "blah" safelist = {"match": {"domain": ["blah.ca"]}} assert add_tag(res_sec, tag, value, safelist) == tags_were_added - assert res_sec._tags == expected_tags + assert res_sec._tag_sets == expected_tags def test_get_regex_for_tag():