mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 11:43:13 +00:00
Fix mixin tag test
This commit is contained in:
parent
88e69d4664
commit
6842a8d1da
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue