Skip to content

Commit 0ce6100

Browse files
Add return values to the other return statements present in do_tests
1 parent f53b642 commit 0ce6100

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -332,11 +332,11 @@ def do_tests():
332332

333333
if (len(binaries) == 0):
334334
print("No binaries to test")
335-
return
335+
return 1
336336

337337
if (len(expected) == 0):
338338
print("No expecteds to test against")
339-
return
339+
return 1
340340

341341
instances = []
342342

0 commit comments

Comments
 (0)