Skip to content

Commit e803a0c

Browse files
committed
fix test
1 parent e1d4931 commit e803a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osf_tests/test_user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1344,7 +1344,7 @@ def test_add_system_tag(self, user):
13441344

13451345
assert len(user.system_tags) == 1
13461346

1347-
tag = Tag.all_tags.get(name=tag_name, system=True)
1347+
tag = Tag.all_tags.get(name=tag_name.lower(), system=True)
13481348
assert tag in user.all_tags.all()
13491349

13501350
def test_add_system_tag_instance(self, user):

0 commit comments

Comments
 (0)