diff --git a/tests/test_views.py b/tests/test_views.py index f3cdc77..88ad871 100644 --- a/tests/test_views.py +++ b/tests/test_views.py @@ -1,7 +1,7 @@ class TestIndexView: def test_index(self, client): resp = client.get('/tweet/') - assert '
Number of Tweets: 2
' in resp.text
+ assert '
Number of Tweets: 3
' in resp.text
assert 'wzyboy' in resp.text
assert 'Uucky_Lee' in resp.text