Skip to content

Commit

Permalink
[3.2.x] Refs #31811 -- Restored **kwargs to django.test.utils.setup_d…
Browse files Browse the repository at this point in the history
…atabases().

Accidentally removed in 61a0ba4.
Backport of c883732 from master
  • Loading branch information
felixxm committed Feb 24, 2021
1 parent 7a6ca01 commit c963bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/test/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def teardown_test_environment():


def setup_databases(verbosity, interactive, *, time_keeper=None, keepdb=False, debug_sql=False, parallel=0,
aliases=None):
aliases=None, **kwargs):
"""Create the test databases."""
if time_keeper is None:
time_keeper = NullTimeKeeper()
Expand Down

0 comments on commit c963bbc

Please sign in to comment.