diff options
| author | Tim Graham <timograham@gmail.com> | 2016-09-16 12:15:00 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-09-17 15:44:06 -0400 |
| commit | 8119b679eb85cdc0ae3d321e54d06dd0200a1e82 (patch) | |
| tree | b4f4e40a371569a260a39ca310e8e984d8582d74 /tests/migrations/test_executor.py | |
| parent | 17677d510f65012531a5af57fd056fb15cfe1067 (diff) | |
Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.
http://bugs.python.org/issue27364
Diffstat (limited to 'tests/migrations/test_executor.py')
| -rw-r--r-- | tests/migrations/test_executor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/migrations/test_executor.py b/tests/migrations/test_executor.py index 847b11c088..93651d74bc 100644 --- a/tests/migrations/test_executor.py +++ b/tests/migrations/test_executor.py @@ -686,7 +686,7 @@ class ExecutorUnitTests(TestCase): self.assertEqual(plan, [(a2_impl, True)]) def test_minimize_rollbacks_branchy(self): - """ + r""" Minimize rollbacks when target has multiple in-app children. a: 1 <---- 3 <--\ @@ -731,7 +731,7 @@ class ExecutorUnitTests(TestCase): self.assertEqual(plan, exp) def test_backwards_nothing_to_do(self): - """ + r""" If the current state satisfies the given target, do nothing. a: 1 <--- 2 |
