From 6842a8d1daf8d0fe8a86a18ab52d882dfecd4fd0 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Sat, 6 Feb 2021 20:35:47 -0800 Subject: [PATCH] Fix mixin tag test --- tests/test_mixins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mixins.py b/tests/test_mixins.py index 2440cacc..575cbdc0 100644 --- a/tests/test_mixins.py +++ b/tests/test_mixins.py @@ -11,7 +11,7 @@ def _test_mixins_tag(obj, attr, tag_method): assert TEST_MIXIN_TAG in [tag.tag for tag in getattr(obj, attr)] remove_tag_method(TEST_MIXIN_TAG) obj.reload() - assert getattr(obj, attr) not in [tag.tag for tag in getattr(obj, attr)] + assert TEST_MIXIN_TAG not in [tag.tag for tag in getattr(obj, attr)] def edit_collection(obj):