From d1299fce0eeeb2a7749fecafc87260462e75aac9 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 20 Aug 2014 14:00:59 -0400 Subject: [PATCH] Fixed migrations tests added in refs #23315. --- tests/migrations/test_autodetector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/migrations/test_autodetector.py b/tests/migrations/test_autodetector.py index cb02b7aacd..1007a9f1c6 100644 --- a/tests/migrations/test_autodetector.py +++ b/tests/migrations/test_autodetector.py @@ -1087,7 +1087,7 @@ class AutodetectorTests(TestCase): ]) apackage = ModelState("b", "APackage", [ ("id", models.AutoField(primary_key=True)), - ("person", models.ForeignKey("a.person")), + ("person", models.ForeignKey("a.Person")), ]) country = ModelState("b", "DeliveryCountry", [ ("id", models.AutoField(primary_key=True)),