From 0fba203d84d917ee7ff33746e3b7228232e16ca3 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 5 Mar 2020 19:49:58 +1100 Subject: [PATCH] docs: Fix simple typo, sould -> should There is a small typo in johnny/tests/cache.py. Should read `should` rather than `sould`. --- johnny/tests/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/johnny/tests/cache.py b/johnny/tests/cache.py index 55b4337..c6c7592 100755 --- a/johnny/tests/cache.py +++ b/johnny/tests/cache.py @@ -226,7 +226,7 @@ def test_transactions(self): with self.assertNumQueries(1, using='second'): g2 = Genre.objects.using("second").get(pk=1) - #other thread sould now be accessing the cache after the get + #other thread should now be accessing the cache after the get #from the commit. other("Genre.objects.using('second').get(pk=1)") hit, ostart = q.get()