summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-05-18 21:46:09 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-05-18 21:46:09 +0200
commit36cd3c2b0a932b59ef91b50ad3bc7ba1a2072d75 (patch)
tree67729a479bb388b2e4d9dea4f6fbfdaba0cb49a6
parent2dec6268b2114a147e10503d6ddc4713443a2f99 (diff)
downloadportage-36cd3c2b0a932b59ef91b50ad3bc7ba1a2072d75.tar.gz
portage-36cd3c2b0a932b59ef91b50ad3bc7ba1a2072d75.tar.bz2
portage-36cd3c2b0a932b59ef91b50ad3bc7ba1a2072d75.zip
Fix typos in comments.
-rw-r--r--pym/portage/tests/locks/test_asynchronous_lock.py6
1 files changed, 3 insertions, 3 deletions
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)