Skip to content

Commit c708a26

Browse files
committed
fix test after confirming travis fails.
1 parent f2d7bf0 commit c708a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

{{cookiecutter.app_slug}}/project/tests/test_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_about(self):
1919
# Ensure about route behaves correctly.
2020
response = self.client.get('/about', follow_redirects=True)
2121
self.assertEqual(response.status_code, 200)
22-
self.assertIn(b'Aboot', response.data)
22+
self.assertIn(b'About', response.data)
2323

2424
def test_404(self):
2525
# Ensure 404 error is handled.

0 commit comments

Comments
 (0)