# HG changeset patch # User Siddharth Agarwal # Date 2015-09-25 00:33:13 # Node ID 94dc10834b79bf5666b8461e11a4d27a7e4d2f7e # Parent 56a640b0f656817d7cf47947935efec41c94beae test-lock.py: copy-edit assertions about file existing Before: expected lock to exists but actually did not exists After: expected lock to exist but actually did not exist diff --git a/tests/test-lock.py b/tests/test-lock.py --- a/tests/test-lock.py +++ b/tests/test-lock.py @@ -80,9 +80,9 @@ class teststate(object): def _toexists(self, exists): if exists: - return 'exists' + return 'exist' else: - return 'not exists' + return 'not exist' class testlock(unittest.TestCase): def testlock(self):