From: Arfrever Frehtes Taifersar Arahesis Date: Wed, 18 May 2011 19:46:09 +0000 (+0200) Subject: Fix typos in comments. X-Git-Tag: v2.2.0_alpha35~41 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=36cd3c2b0a932b59ef91b50ad3bc7ba1a2072d75;p=portage.git Fix typos in comments. --- diff --git a/pym/portage/tests/locks/test_asynchronous_lock.py b/pym/portage/tests/locks/test_asynchronous_lock.py index 6e8bc0a07..8946caf89 100644 --- a/pym/portage/tests/locks/test_asynchronous_lock.py +++ b/pym/portage/tests/locks/test_asynchronous_lock.py @@ -56,7 +56,7 @@ class AsynchronousLockTestCase(TestCase): lock2 = AsynchronousLock(path=path, scheduler=scheduler, _force_async=True, _force_process=True) lock2.start() - # lock2 should we waiting for lock1 to release + # lock2 should be waiting for lock1 to release self.assertEqual(lock2.poll(), None) self.assertEqual(lock2.returncode, None) @@ -79,7 +79,7 @@ class AsynchronousLockTestCase(TestCase): lock2 = AsynchronousLock(path=path, scheduler=scheduler, _force_async=True, _force_process=True) lock2.start() - # lock2 should we waiting for lock1 to release + # lock2 should be waiting for lock1 to release self.assertEqual(lock2.poll(), None) self.assertEqual(lock2.returncode, None) @@ -104,7 +104,7 @@ class AsynchronousLockTestCase(TestCase): lock2 = AsynchronousLock(path=path, scheduler=scheduler, _force_async=True, _force_process=True) lock2.start() - # lock2 should we waiting for lock1 to release + # lock2 should be waiting for lock1 to release self.assertEqual(lock2.poll(), None) self.assertEqual(lock2.returncode, None)