Commit 35506db0 authored by Filip Kučerák's avatar Filip Kučerák
Browse files

repair negative passed tests

parent 0a20a6d9
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -610,7 +610,7 @@ class Tester:

        if failed_tests:
            no_tests = len(self.tests)
            no_pass = len(failed_tests) - no_tests
            no_pass = no_tests - len(failed_tests)
            self.log(1, '\n', header('SUMMARY', self.verbosity > 3),
                     f"Tests failed: {no_pass}/{no_tests} passed\n", sep='\n')
        else: