summaryrefslogtreecommitdiff
path: root/psutil/tests/test_bsd.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/tests/test_bsd.py')
-rwxr-xr-xpsutil/tests/test_bsd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/tests/test_bsd.py b/psutil/tests/test_bsd.py
index e541547d..29ea384d 100755
--- a/psutil/tests/test_bsd.py
+++ b/psutil/tests/test_bsd.py
@@ -36,7 +36,7 @@ if BSD:
PAGESIZE = getpagesize()
# muse requires root privileges
- MUSE_AVAILABLE = True if os.getuid() == 0 and which('muse') else False
+ MUSE_AVAILABLE = os.getuid() == 0 and which('muse')
else:
PAGESIZE = None
MUSE_AVAILABLE = False