diff options
| author | Tim Graham <timograham@gmail.com> | 2017-02-02 20:43:21 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-02-03 08:01:45 -0500 |
| commit | 29f607927fe82e2c8baab171dfa8baf710cd9b83 (patch) | |
| tree | f525c6c4784ccafe77e01f706093fa6f4a5c9481 /tests/invalid_models_tests | |
| parent | a21ec12409a5b72d602cd03ee925b6ceb1cd5492 (diff) | |
Fixed spelling of "nonexistent".
Diffstat (limited to 'tests/invalid_models_tests')
| -rw-r--r-- | tests/invalid_models_tests/test_models.py | 10 |
1 files changed, 5 insertions, 5 deletions
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', ) |
