From 29f607927fe82e2c8baab171dfa8baf710cd9b83 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 2 Feb 2017 20:43:21 -0500 Subject: Fixed spelling of "nonexistent". --- tests/invalid_models_tests/test_models.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/invalid_models_tests') diff --git a/tests/invalid_models_tests/test_models.py b/tests/invalid_models_tests/test_models.py index d35f9aa063..77d180d791 100644 --- a/tests/invalid_models_tests/test_models.py +++ b/tests/invalid_models_tests/test_models.py @@ -88,7 +88,7 @@ class IndexTogetherTests(SimpleTestCase): errors = Model.check() expected = [ Error( - "'index_together' refers to the non-existent field 'missing_field'.", + "'index_together' refers to the nonexistent field 'missing_field'.", obj=Model, id='models.E012', ), @@ -214,7 +214,7 @@ class UniqueTogetherTests(SimpleTestCase): errors = Model.check() expected = [ Error( - "'unique_together' refers to the non-existent field 'missing_field'.", + "'unique_together' refers to the nonexistent field 'missing_field'.", obj=Model, id='models.E012', ), @@ -631,7 +631,7 @@ class OtherModelTests(SimpleTestCase): errors = Model.check() expected = [ Error( - "'ordering' refers to the non-existent field 'relation'.", + "'ordering' refers to the nonexistent field 'relation'.", obj=Model, id='models.E015', ), @@ -646,7 +646,7 @@ class OtherModelTests(SimpleTestCase): errors = Model.check() expected = [ Error( - "'ordering' refers to the non-existent field 'missing_field'.", + "'ordering' refers to the nonexistent field 'missing_field'.", obj=Model, id='models.E015', ) @@ -665,7 +665,7 @@ class OtherModelTests(SimpleTestCase): errors = Model.check() expected = [ Error( - "'ordering' refers to the non-existent field 'missing_fk_field_id'.", + "'ordering' refers to the nonexistent field 'missing_fk_field_id'.", obj=Model, id='models.E015', ) -- cgit v1.3