summaryrefslogtreecommitdiff
path: root/Lib/test/test_posix.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-08-02 22:10:55 -0500
committerBenjamin Peterson <benjamin@python.org>2011-08-02 22:10:55 -0500
commitc15815808678ac4f9d8bb48428bf98e51e155354 (patch)
treead3dd6498278211b100bc59de0f25b5e59390396 /Lib/test/test_posix.py
parentb0fc9c4d0af00e002a6a9b43563c447281313950 (diff)
downloadcpython-git-c15815808678ac4f9d8bb48428bf98e51e155354.tar.gz
fix indentation
Diffstat (limited to 'Lib/test/test_posix.py')
-rw-r--r--Lib/test/test_posix.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index e43379e9eb..3793e09073 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -850,8 +850,8 @@ class PosixTester(unittest.TestCase):
self.assertGreaterEqual(hi, lo)
# OSX evidently just returns 15 without checking the argument.
if sys.platform != "darwin":
- self.assertRaises(OSError, posix.sched_get_priority_min, -23)
- self.assertRaises(OSError, posix.sched_get_priority_max, -23)
+ self.assertRaises(OSError, posix.sched_get_priority_min, -23)
+ self.assertRaises(OSError, posix.sched_get_priority_max, -23)
@unittest.skipUnless(hasattr(posix, 'sched_setscheduler'), "can't change scheduler")
def test_get_and_set_scheduler_and_param(self):