Skip to content

Commit 4e6f2a9

Browse files
SAN-6097 Code review change
1 parent d3449ac commit 4e6f2a9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

client/services/calculateHistoricalTestResults.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ function calculateHistoricalTestResult(
3232
if (keypather.get(test, 'build.failed') || keypather.get(test, 'application.exitCode') > 0) {
3333
test.testState = FAILED;
3434
return;
35-
} else if (keypather.get(test,'application.exitCode') === 0 && keypather.get(test,'application.stop') !== jesusBirthday) {
35+
}
36+
37+
if (keypather.get(test,'application.exitCode') === 0 && keypather.get(test,'application.stop') !== jesusBirthday) {
3638
test.testState = PASSED;
3739
return;
3840
}

0 commit comments

Comments
 (0)