diff -r e93271e9c70e -r 9633a6a5e5f9 tests/app/soc/cache/test_base.py --- a/tests/app/soc/cache/test_base.py Wed Jan 28 11:15:32 2009 +0000 +++ b/tests/app/soc/cache/test_base.py Wed Jan 28 11:21:58 2009 +0000 @@ -28,7 +28,7 @@ class CacheDecoratorTest(unittest.TestCase): - """Tests that the @cache decorator caches the result + """Tests that the @cache decorator caches the result. """ def setUp(self): @@ -53,14 +53,14 @@ memcache.add('answer_to_life', 42) def testMemcache(self): - """Santiy check to see if memcache is working + """Sanity check to see if memcache is working. """ memcache.add('answer_to_life', 42) self.assertEqual(memcache.get('answer_to_life'), 42) def testSidebarCaching(self): - """Test that the caching decorator caches + """Test that the caching decorator caches. """ self.failOnSecondCall()