about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/auth/test_groups.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/auth/test_groups.py b/tests/unit/auth/test_groups.py
index 79dc16f..9eef0e9 100644
--- a/tests/unit/auth/test_groups.py
+++ b/tests/unit/auth/test_groups.py
@@ -115,5 +115,5 @@ def test_user_group(test_users_in_group, user, expected):
     THEN: return a Maybe containing the group that the user belongs to, or
       Nothing
     """
-    conn, group, users = test_users_in_group
+    conn, _group, _users = test_users_in_group
     assert user_group(conn, user).maybe(Nothing, lambda val: val) == expected