summaryrefslogtreecommitdiff
path: root/psutil/tests/test_posix.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/tests/test_posix.py')
-rwxr-xr-xpsutil/tests/test_posix.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/psutil/tests/test_posix.py b/psutil/tests/test_posix.py
index d8732230..0dc1dfda 100755
--- a/psutil/tests/test_posix.py
+++ b/psutil/tests/test_posix.py
@@ -63,6 +63,8 @@ def ps(fmt, pid=None):
cmd.append('ax')
if SUNOS:
+ # XXX: set() has not get() method so this cannot work; not sure
+ # what I meant in here.
fmt_map = set(('command', 'comm', 'start', 'stime'))
fmt = fmt_map.get(fmt, fmt)
@@ -408,8 +410,7 @@ class TestSystemAPIs(PsutilTestCase):
"raw devices not supported" in err or \
"permission denied" in err:
continue
- else:
- raise
+ raise
else:
self.assertAlmostEqual(usage.total, total, delta=tolerance)
self.assertAlmostEqual(usage.used, used, delta=tolerance)