From e2adf57725c6a1b45d6a1f01c64009a09839df5e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 15 Nov 2024 20:12:57 -0500 Subject: [PATCH] remove unused params arg --- tests/raw_query/tests.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/raw_query/tests.py b/tests/raw_query/tests.py index 48ed5c91a9..0c2f9c8e7a 100644 --- a/tests/raw_query/tests.py +++ b/tests/raw_query/tests.py @@ -75,15 +75,12 @@ def assertSuccessfulMongoRawQuery( query, expected_results, expected_annotations=(), - params=[], translations=None, ): """ Execute the passed query against the passed model and check the output """ - results = list( - model.objects.raw_mql(query, params=params, translations=translations) - ) + results = list(model.objects.raw_mql(query, translations=translations)) self.assertProcessed(model, results, expected_results, expected_annotations) self.assertAnnotations(results, expected_annotations)