Skip to content

Commit

Permalink
remove unused params arg
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Nov 16, 2024
1 parent 65b29f9 commit e2adf57
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/raw_query/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit e2adf57

Please sign in to comment.