Skip to content

Commit f436e3f

Browse files
committed
Fix incorrect detection of test failures
1 parent 716afd5 commit f436e3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/hibernate/infra/bot/ExtractDevelocityBuildScans.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ else if ( customValue.getName().equals( "CI stage" ) ) {
226226
tags,
227227
goals,
228228
hasFailed ? DevelocityCIBuildScan.Status.FAILURE : DevelocityCIBuildScan.Status.SUCCESS,
229-
hasVerificationFailure != null && !hasVerificationFailure
229+
hasVerificationFailure != null && hasVerificationFailure
230230
? DevelocityCIBuildScan.Status.FAILURE
231231
: DevelocityCIBuildScan.Status.SUCCESS,
232232
buildScanURI,

0 commit comments

Comments
 (0)