From c3ec8f9db8c5051e366e42aac87fca3fdc74bc19 Mon Sep 17 00:00:00 2001 From: Brian Ball Date: Mon, 26 Mar 2018 22:47:32 -0700 Subject: [PATCH] missing an i in the query string --- tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.py b/tests.py index 52111b1..105867b 100755 --- a/tests.py +++ b/tests.py @@ -34,7 +34,7 @@ class UserModelCase(unittest.TestCase): u = User(username='john', email='john@example.com') self.assertEqual(u.avatar(128), ('https://www.gravatar.com/avatar/' 'd4c74594d841139328695756648b6bd6' - '?d=identicon&s=128')) + '?id=identicon&s=128')) def test_follow(self): u1 = User(username='john', email='john@example.com')