Skip to content

Commit

Permalink
Fix flaky check
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Dec 21, 2023
1 parent d4df324 commit 75930fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5809,7 +5809,7 @@ result := TestSuite new addTests: flakyTests; run.
FileStream stdout cr;
nextPutAll: 'Test results:'; cr;
nextPutAll: result asString; cr; flush.
exitCode := result hasPassed ifTrue: [ 1 ] ifFalse: [ exitCode ].
exitCode := result hasErrors ifTrue: [ 1 ] ifFalse: [ exitCode ].

FileStream stdout cr; nextPutAll: 'Running failing tests...'; cr; flush.
result := TestSuite new addTests: failingTests; run.
Expand Down

0 comments on commit 75930fc

Please sign in to comment.