summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTimothy Allen <flipper@peregrinesalon.com>2017-08-07 10:33:55 -0400
committerTim Graham <timograham@gmail.com>2017-08-07 10:33:55 -0400
commit5fe9b7b40acf73da3dd91c56b3534f0bab1fb3d0 (patch)
tree7a10e7db35de62b5be3ed71cdd4d432c59ffda98 /tests
parent0a24714b260cfbf955bb093bad1a77393579e783 (diff)
Fixed #28457 -- Updated the design of the 'Congrats' page for new Django projects.
Developed by Timothy Allen and Chad Whitman of The Wharton School with shepherding from Aymeric Augustin and Collin Anderson.
Diffstat (limited to 'tests')
-rw-r--r--tests/view_tests/tests/test_debug.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/view_tests/tests/test_debug.py b/tests/view_tests/tests/test_debug.py
index bb354a5cb6..a260f948e5 100644
--- a/tests/view_tests/tests/test_debug.py
+++ b/tests/view_tests/tests/test_debug.py
@@ -195,7 +195,7 @@ class DebugViewTests(LoggingCaptureMixin, SimpleTestCase):
response = self.client.get('/')
self.assertContains(
response,
- "<h2>Congratulations on your first Django-powered page.</h2>"
+ "<h2>The install worked successfully! Congratulations!</h2>"
)
@override_settings(ROOT_URLCONF='view_tests.regression_21530_urls')