Skip to content

Commit 87c190c

Browse files
committed
fix python syntax
1 parent 6432c1a commit 87c190c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

regtest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ def test_suite(argv):
947947
else: # don't do a pltfile comparison
948948
test.compare_successful = True
949949

950-
else if test.return_code == 0: # selfTest
950+
elif test.return_code == 0: # selfTest
951951

952952
if args.make_benchmarks is None:
953953

@@ -1135,7 +1135,7 @@ def test_suite(argv):
11351135
# were any Backtrace files output (indicating a crash)
11361136
suite.copy_backtrace(test)
11371137

1138-
else if test.return_code == 0 and:
1138+
elif test.return_code == 0:
11391139
if test.doComparison:
11401140
shutil.copy(f"{test.name}.status", suite.full_web_dir)
11411141

0 commit comments

Comments
 (0)