diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-04-02 19:54:05 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-04-02 22:54:05 -0400 |
| commit | f3b1c3bd06a0d3268068d32036b667c2d98bcc4e (patch) | |
| tree | 9bb644f6f3999fb4f996e07a58d7060615424079 /tests/migrations/test_loader.py | |
| parent | 597aba6d6762f1507aaad1a8caa59def0e1f1871 (diff) | |
Refs #23406 -- Fixed "invalid escape sequence" warning in migrations test.
Diffstat (limited to 'tests/migrations/test_loader.py')
| -rw-r--r-- | tests/migrations/test_loader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrations/test_loader.py b/tests/migrations/test_loader.py index eade230640..dcb6404818 100644 --- a/tests/migrations/test_loader.py +++ b/tests/migrations/test_loader.py @@ -523,7 +523,7 @@ class PycLoaderTests(MigrationTestBase): """ with self.temporary_migration_module(module='migrations.test_migrations_bad_pyc'): msg = ( - "Couldn't import '\w+.migrations.0001_initial' as it appears " + r"Couldn't import '\w+.migrations.0001_initial' as it appears " "to be a stale .pyc file." ) with self.assertRaisesRegex(ImportError, msg): |
