From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QMmhL-0006HJ-DI for garchives@archives.gentoo.org; Wed, 18 May 2011 19:46:23 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E8C61C01C; Wed, 18 May 2011 19:46:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CCAD91C01C for ; Wed, 18 May 2011 19:46:15 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6193E1B400F for ; Wed, 18 May 2011 19:46:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D166145973 for ; Wed, 18 May 2011 19:46:14 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <36cd3c2b0a932b59ef91b50ad3bc7ba1a2072d75.arfrever@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/tests/locks/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/tests/locks/test_asynchronous_lock.py X-VCS-Directories: pym/portage/tests/locks/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: 36cd3c2b0a932b59ef91b50ad3bc7ba1a2072d75 Date: Wed, 18 May 2011 19:46:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 3d1f6282d5342c8b5d2ff34ff0f8362a commit: 36cd3c2b0a932b59ef91b50ad3bc7ba1a2072d75 Author: Arfrever Frehtes Taifersar Arahesis Gentoo Org> AuthorDate: Wed May 18 19:46:09 2011 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gentoo org> CommitDate: Wed May 18 19:46:09 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D36cd3c2b Fix typos in comments. --- pym/portage/tests/locks/test_asynchronous_lock.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/portage/tests/locks/test_asynchronous_lock.py b/pym/port= age/tests/locks/test_asynchronous_lock.py index 6e8bc0a..8946caf 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 =3D AsynchronousLock(path=3Dpath, scheduler=3Dscheduler, _force_async=3DTrue, _force_process=3DTrue) 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) =20 @@ -79,7 +79,7 @@ class AsynchronousLockTestCase(TestCase): lock2 =3D AsynchronousLock(path=3Dpath, scheduler=3Dscheduler, _force_async=3DTrue, _force_process=3DTrue) 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) =20 @@ -104,7 +104,7 @@ class AsynchronousLockTestCase(TestCase): lock2 =3D AsynchronousLock(path=3Dpath, scheduler=3Dscheduler, _force_async=3DTrue, _force_process=3DTrue) 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) =20