From 56b54da6fc6e97d5d6dac70f2393dcc98d93991c Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 12 Dec 2022 13:29:45 +0300 Subject: auth: pass cursor object to `user_group` function --- tests/unit/auth/test_groups.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/unit') 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) -- cgit v1.2.3