aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/auth/test_groups.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/unit/auth/test_groups.py b/tests/unit/auth/test_groups.py
index e1b44cc..5a27c71 100644
--- a/tests/unit/auth/test_groups.py
+++ b/tests/unit/auth/test_groups.py
@@ -117,4 +117,7 @@ def test_user_group(test_users_in_group, user, expected):
Nothing
"""
conn, _group, _users = test_users_in_group
- assert user_group(conn, user).maybe(Nothing, lambda val: val) == expected
+ with db.cursor(conn) as cursor:
+ assert (
+ user_group(cursor, user).maybe(Nothing, lambda val: val)
+ == expected)