diff --git a/linecache2/tests/test_linecache.py b/linecache2/tests/test_linecache.py index befe30e..9ef7c94 100644 --- a/linecache2/tests/test_linecache.py +++ b/linecache2/tests/test_linecache.py @@ -152,7 +152,7 @@ def test_lazycache_smoke(self): self.assertEqual( True, linecache.lazycache(NONEXISTENT_FILENAME, globals())) self.assertEqual(1, len(linecache.cache[NONEXISTENT_FILENAME])) - # Note here that we're looking up a non existant filename with no + # Note here that we're looking up a non existent filename with no # globals: this would error if the lazy value wasn't resolved. self.assertEqual(lines, linecache.getlines(NONEXISTENT_FILENAME))