From 4cc328ef78c7b8108d7623fdd4fcae5294317f2e Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 18 Jan 2023 14:59:35 +0300 Subject: auth: Fix tests after enforcing FOREIGN KEY constraint Fix a number of tests and fixtures that were not conforming to the FOREIGN KEY constraints: * Each test that creates a new "object" needs to clean up after itself * Each fixture that sets up test data needs to clean up after itself --- tests/unit/auth/test_roles.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/unit/auth/test_roles.py') diff --git a/tests/unit/auth/test_roles.py b/tests/unit/auth/test_roles.py index 56ad39e..bee03fc 100644 --- a/tests/unit/auth/test_roles.py +++ b/tests/unit/auth/test_roles.py @@ -99,4 +99,5 @@ def test_user_roles(fxtr_group_user_roles, user, expected): WHEN: we request the user's privileges THEN: return **ALL** the privileges attached to the user """ - assert user_roles(fxtr_group_user_roles, user) == expected + conn, *_others = fxtr_group_user_roles + assert user_roles(conn, user) == expected -- cgit v1.2.3