diff --git a/plinth/modules/users/tests/test_group.py b/plinth/modules/users/tests/test_group.py index 530a5f2b5..3530a8362 100644 --- a/plinth/modules/users/tests/test_group.py +++ b/plinth/modules/users/tests/test_group.py @@ -28,6 +28,7 @@ class TestGroups(unittest.TestCase): """Test groups behavior.""" def test_register_group(self): """Test for multi addition of same group""" + users.groups = dict() # reset groups group = ('TestGroup', 'Group for testing') users.register_group(group) users.register_group(group)