aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/mtest.py')
-rw-r--r--mesonbuild/mtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py
index 1feb205..fca9ae0 100644
--- a/mesonbuild/mtest.py
+++ b/mesonbuild/mtest.py
@@ -411,7 +411,7 @@ class TAPParser:
yield self.Error('more than one plan found')
else:
num_tests = int(m.group(1))
- skipped = (num_tests == 0)
+ skipped = num_tests == 0
if m.group(2):
if m.group(2).upper().startswith('SKIP'):
if num_tests > 0: