diff options
| author | Claude Paroz <claude@2xlibre.net> | 2014-08-29 14:54:08 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2014-08-30 12:37:10 +0200 |
| commit | 66757fee7e921ad4c35e0b3f80c25e026100b31c (patch) | |
| tree | 0b6a6e10a1d800532d114ab4b5b4a2d6f7d73abd /tests/migrations/test_executor.py | |
| parent | 05a8cef4288e2a85dbaff12bc2683a75c9998618 (diff) | |
Fixed #23384 -- Allowed overriding part of a dictionary-type setting
This change is needed for upcoming changes where settings might be
grouped in a parent dictionary.
Thanks Tim Graham for the review.
Diffstat (limited to 'tests/migrations/test_executor.py')
| -rw-r--r-- | tests/migrations/test_executor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrations/test_executor.py b/tests/migrations/test_executor.py index d07eecfcef..7563381abe 100644 --- a/tests/migrations/test_executor.py +++ b/tests/migrations/test_executor.py @@ -196,7 +196,7 @@ class ExecutorTests(MigrationTestBase): @override_settings( MIGRATION_MODULES={ "migrations": "migrations.test_migrations_custom_user", - "django.contrib.auth": "django.contrib.auth.migrations", + "auth": "django.contrib.auth.migrations", }, AUTH_USER_MODEL="migrations.Author", ) |
