summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2014-03-03 19:29:50 +0800
committerRussell Keith-Magee <russell@keith-magee.com>2014-03-03 19:29:50 +0800
commit6b63742ce5a63484890f147830d3fa9b2d0342f9 (patch)
tree132361f73e5979ecdb3349e8ead09e74af0e8121 /tests
parentc41335fa27a23171ec8c319eaa0a713e575c1036 (diff)
downloaddjango-6b63742ce5a63484890f147830d3fa9b2d0342f9.tar.gz
Corrected expected test output to allow for cleanups in signal and compatibility checks.
Diffstat (limited to 'tests')
-rw-r--r--tests/check_framework/tests.py2
-rw-r--r--tests/model_validation/tests.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/check_framework/tests.py b/tests/check_framework/tests.py
index c3ddc770e0..c770ee517b 100644
--- a/tests/check_framework/tests.py
+++ b/tests/check_framework/tests.py
@@ -134,7 +134,7 @@ class Django_1_6_0_CompatibilityChecks(TestCase):
errors = check_1_6_compatibility()
expected = [
checks.Warning(
- 'BooleanField does not have a default value. ',
+ 'BooleanField does not have a default value.',
hint=('Django 1.6 changed the default value of BooleanField from False to None. '
'See https://docs.djangoproject.com/en/1.6/ref/models/fields/#booleanfield '
'for more information.'),
diff --git a/tests/model_validation/tests.py b/tests/model_validation/tests.py
index 4c2c55dd21..a9fb30cbcd 100644
--- a/tests/model_validation/tests.py
+++ b/tests/model_validation/tests.py
@@ -32,7 +32,7 @@ class ModelValidationTest(TestCase):
errors = run_checks()
expected = [
Error(
- "The `on_post_init` function was connected to the `post_init` "
+ "The 'on_post_init' function was connected to the 'post_init' "
"signal with a lazy reference to the 'missing-app.Model' "
"sender, which has not been installed.",
hint=None,
@@ -40,8 +40,8 @@ class ModelValidationTest(TestCase):
id='signals.E001',
),
Error(
- "An instance of the `OnPostInit` class was connected to "
- "the `post_init` signal with a lazy reference to the "
+ "An instance of the 'OnPostInit' class was connected to "
+ "the 'post_init' signal with a lazy reference to the "
"'missing-app.Model' sender, which has not been installed.",
hint=None,
obj='model_validation.tests',