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:49:37 -0400 |
| commit | 317c480c046284256786aaa6723104df8be9c693 (patch) | |
| tree | 703e0c5f46979dd2fc4b177eaa472c41a5a88213 | |
| parent | 4169d4694aca592e9b7e97a9d0d138548261bdc9 (diff) | |
Removed some u'' prefixes to fix Python 3.2.
| -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"), ], ) |
