summaryrefslogtreecommitdiff
path: root/tests/model_validation/tests.py
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2013-11-02 21:16:33 +0200
committerAnssi Kääriäinen <akaariai@gmail.com>2013-11-02 21:18:35 +0200
commit9f76ea1eaad0db0183fa3b5bade16392db0cafbd (patch)
tree4342e8d48db5b9a4b240f8c9c71e87924ba05a77 /tests/model_validation/tests.py
parent18c642b96c5160d13971f7699a43d0f672435b26 (diff)
Fixed #21375 -- related_name='+' clashed with other '+' names
Diffstat (limited to 'tests/model_validation/tests.py')
-rw-r--r--tests/model_validation/tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/model_validation/tests.py b/tests/model_validation/tests.py
index ffd0d89412..494af97f96 100644
--- a/tests/model_validation/tests.py
+++ b/tests/model_validation/tests.py
@@ -10,4 +10,6 @@ class ModelValidationTest(TestCase):
# Validation Tests:
# * choices= Iterable of Iterables
# See: https://code.djangoproject.com/ticket/20430
+ # * related_name='+' doesn't clash with another '+'
+ # See: https://code.djangoproject.com/ticket/21375
management.call_command("validate", stdout=six.StringIO())