summaryrefslogtreecommitdiff
path: root/tests/sites_framework
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2014-03-03 14:27:22 +0800
committerRussell Keith-Magee <russell@keith-magee.com>2014-03-03 14:27:22 +0800
commit55ba92a9c9fc22ce5482c1a7d18ffb0003be2b80 (patch)
tree2042fb3b7cf45242e757875da99134ba86f0af26 /tests/sites_framework
parent57e08aa23247141db58c244f01afda52110b86b7 (diff)
downloaddjango-55ba92a9c9fc22ce5482c1a7d18ffb0003be2b80.tar.gz
Edited contrib.sites check messages for grammar and consistency.
Diffstat (limited to 'tests/sites_framework')
-rw-r--r--tests/sites_framework/tests.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/sites_framework/tests.py b/tests/sites_framework/tests.py
index 680d5d4fb2..97d01e1d57 100644
--- a/tests/sites_framework/tests.py
+++ b/tests/sites_framework/tests.py
@@ -51,8 +51,7 @@ class SitesFrameworkTestCase(TestCase):
checks.Error(
("CurrentSiteManager could not find a field named "
"'places_this_article_should_appear'."),
- hint=('Ensure that you did not misspell the field name. '
- 'Does the field exist?'),
+ hint=None,
obj=InvalidArticle.on_site,
id='sites.E001',
)
@@ -67,7 +66,7 @@ class SitesFrameworkTestCase(TestCase):
errors = ConfusedArticle.check()
expected = [
checks.Error(
- "CurrentSiteManager requires that 'ConfusedArticle.site' must be a ForeignKey or ManyToManyField.",
+ "CurrentSiteManager cannot use 'ConfusedArticle.site' as it is not a ForeignKey or ManyToManyField.",
hint=None,
obj=ConfusedArticle.on_site,
id='sites.E002',