summaryrefslogtreecommitdiff
path: root/tests/invalid_models_tests
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-03-01 19:38:21 +0100
committerGitHub <noreply@github.com>2019-03-01 19:38:21 +0100
commitf69c7bbdceba43789bfba935dd8fa3daaa7f36c4 (patch)
tree2b7d33d38832de4631694390630acc48a37fd4d5 /tests/invalid_models_tests
parentfe65918dca405644047b7dbc295d14535626a83a (diff)
Refs #29408 -- Cosmetic edits for validation of related fields and lookups in model Meta.ordering.
Follow up to 440505cb2cadbe1a5b9fba246bcde6c04f51d07e.
Diffstat (limited to 'tests/invalid_models_tests')
-rw-r--r--tests/invalid_models_tests/test_models.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/tests/invalid_models_tests/test_models.py b/tests/invalid_models_tests/test_models.py
index 320e799a6e..6b57dd7d9d 100644
--- a/tests/invalid_models_tests/test_models.py
+++ b/tests/invalid_models_tests/test_models.py
@@ -632,7 +632,8 @@ class OtherModelTests(SimpleTestCase):
self.assertEqual(Model.check(), [
Error(
- "'ordering' refers to the nonexistent field 'relation'.",
+ "'ordering' refers to the nonexistent field, related field, "
+ "or lookup 'relation'.",
obj=Model,
id='models.E015',
),
@@ -645,7 +646,8 @@ class OtherModelTests(SimpleTestCase):
self.assertEqual(Model.check(), [
Error(
- "'ordering' refers to the nonexistent field 'missing_field'.",
+ "'ordering' refers to the nonexistent field, related field, "
+ "or lookup 'missing_field'.",
obj=Model,
id='models.E015',
)
@@ -660,7 +662,8 @@ class OtherModelTests(SimpleTestCase):
self.assertEqual(Model.check(), [
Error(
- "'ordering' refers to the nonexistent field 'missing_fk_field_id'.",
+ "'ordering' refers to the nonexistent field, related field, "
+ "or lookup 'missing_fk_field_id'.",
obj=Model,
id='models.E015',
)
@@ -675,7 +678,7 @@ class OtherModelTests(SimpleTestCase):
self.assertEqual(Model.check(), [
Error(
- "'ordering' refers to the nonexistent field, related field "
+ "'ordering' refers to the nonexistent field, related field, "
"or lookup 'missing_related__id'.",
obj=Model,
id='models.E015',
@@ -694,7 +697,7 @@ class OtherModelTests(SimpleTestCase):
self.assertEqual(Child.check(), [
Error(
- "'ordering' refers to the nonexistent field, related field "
+ "'ordering' refers to the nonexistent field, related field, "
"or lookup 'parent__missing_field'.",
obj=Child,
id='models.E015',
@@ -710,7 +713,7 @@ class OtherModelTests(SimpleTestCase):
self.assertEqual(Child.check(), [
Error(
- "'ordering' refers to the nonexistent field, related field "
+ "'ordering' refers to the nonexistent field, related field, "
"or lookup 'parent__missing_field'.",
obj=Child,
id='models.E015',
@@ -732,7 +735,7 @@ class OtherModelTests(SimpleTestCase):
self.assertEqual(Child.check(), [
Error(
- "'ordering' refers to the nonexistent field, related field "
+ "'ordering' refers to the nonexistent field, related field, "
"or lookup 'parent1__parent2__missing_field'.",
obj=Child,
id='models.E015',