summaryrefslogtreecommitdiff
path: root/psutil/tests/test_contracts.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/tests/test_contracts.py')
-rwxr-xr-xpsutil/tests/test_contracts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/tests/test_contracts.py b/psutil/tests/test_contracts.py
index 3b806ee3..b767e3eb 100755
--- a/psutil/tests/test_contracts.py
+++ b/psutil/tests/test_contracts.py
@@ -176,7 +176,7 @@ class TestAvailProcessAPIs(PsutilTestCase):
def test_io_counters(self):
hasit = hasattr(psutil.Process, "io_counters")
- self.assertEqual(hasit, False if MACOS or SUNOS else True)
+ self.assertEqual(hasit, not (MACOS or SUNOS))
def test_num_fds(self):
self.assertEqual(hasattr(psutil.Process, "num_fds"), POSIX)