diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-02-24 12:57:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-24 12:57:13 +0100 |
| commit | c8837322e8b4068441ffe5dd497ab8a323525d3a (patch) | |
| tree | 5bdf2d3ee22b45179aa2bc6e465a142bda6c3a05 | |
| parent | 3fd82a62415e748002435e7bad06b5017507777c (diff) | |
Refs #31811 -- Restored **kwargs to django.test.utils.setup_databases().
Accidentally removed in 61a0ba43cfd4ff66f51a9d73dcd8ed6f6a6d9915.
| -rw-r--r-- | django/test/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/utils.py b/django/test/utils.py index 4963d2185a..b91532e597 100644 --- a/django/test/utils.py +++ b/django/test/utils.py @@ -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() |
