diff options
| author | Tim Graham <timograham@gmail.com> | 2014-08-20 14:00:59 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-08-20 14:01:50 -0400 |
| commit | 6981eced83ea2d6462b21c12ecea044e02e56d05 (patch) | |
| tree | c26a408fcd50ecdc46d669507a68cddd8159e996 | |
| parent | 49280a73ea533bca0b870d1b135bb9e4a7ce989b (diff) | |
[1.7.x] Fixed migrations tests added in refs #23315.
Backport of d1299fce0e from master
| -rw-r--r-- | tests/migrations/test_autodetector.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrations/test_autodetector.py b/tests/migrations/test_autodetector.py index 92d8e8cfde..31551f5368 100644 --- a/tests/migrations/test_autodetector.py +++ b/tests/migrations/test_autodetector.py @@ -1075,7 +1075,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)), |
