[1.7.x] Removed some u'' prefixes to fix Python 3.2.
Backport of 317c480c04
from master
This commit is contained in:
parent
095f73aa22
commit
7f095ea744
|
@ -91,8 +91,8 @@ class LoaderTests(TestCase):
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
migration_loader.graph.forwards_plan(("migrations", "0001_initial")),
|
migration_loader.graph.forwards_plan(("migrations", "0001_initial")),
|
||||||
[
|
[
|
||||||
('contenttypes', u'0001_initial'),
|
('contenttypes', '0001_initial'),
|
||||||
('auth', u'0001_initial'),
|
('auth', '0001_initial'),
|
||||||
("migrations", "0001_initial"),
|
("migrations", "0001_initial"),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue