diff options
| author | Tim Graham <timograham@gmail.com> | 2014-06-16 18:49:37 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-06-16 18:50:07 -0400 |
| commit | 7f095ea74419cda5534b0cc9fbedc41f84f41318 (patch) | |
| tree | 4a1f0b26924ba05e5fd1842def722b52cbeb59ba | |
| parent | 095f73aa224d46c67274104679bdc54f2a53499d (diff) | |
[1.7.x] Removed some u'' prefixes to fix Python 3.2.
Backport of 317c480c04 from master
| -rw-r--r-- | tests/migrations/test_loader.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/migrations/test_loader.py b/tests/migrations/test_loader.py index 78cde79a31..224deb7374 100644 --- a/tests/migrations/test_loader.py +++ b/tests/migrations/test_loader.py @@ -91,8 +91,8 @@ class LoaderTests(TestCase): self.assertEqual( migration_loader.graph.forwards_plan(("migrations", "0001_initial")), [ - ('contenttypes', u'0001_initial'), - ('auth', u'0001_initial'), + ('contenttypes', '0001_initial'), + ('auth', '0001_initial'), ("migrations", "0001_initial"), ], ) |
