aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/core
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/core')
-rw-r--r--xtesting/core/testcase.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtesting/core/testcase.py b/xtesting/core/testcase.py
index 380adc5e..4c02e1ca 100644
--- a/xtesting/core/testcase.py
+++ b/xtesting/core/testcase.py
@@ -79,7 +79,7 @@ class TestCase(metaclass=abc.ABCMeta):
if self.is_skipped:
result = 'SKIP'
else:
- result = 'PASS' if(self.is_successful(
+ result = 'PASS' if (self.is_successful(
) == TestCase.EX_OK) else 'FAIL'
msg = prettytable.PrettyTable(
header_style='upper', padding_width=5,
@@ -106,7 +106,7 @@ class TestCase(metaclass=abc.ABCMeta):
assert self.stop_time
if self.stop_time < self.start_time:
return "XX:XX"
- return(
+ return (
f"{str(int(self.stop_time - self.start_time) // 60).zfill(2)}:"
f"{str(int(self.stop_time - self.start_time) % 60).zfill(2)}")