Skip to content

Commit b94c902

Browse files
committed
Correctly get build information
1 parent f7b68e7 commit b94c902

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/client/src/org/openqa/selenium/internal/BuildInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ public String getReleaseLabel() {
9494

9595
/** @return The embedded build revision or "unknown". */
9696
public String getBuildRevision() {
97-
return BUILD_PROPERTIES.getProperty("build-revision", "unknown");
97+
return BUILD_PROPERTIES.getProperty("Build-Revision", "unknown");
9898
}
9999

100100
/** @return The embedded build time or "unknown". */
101101
public String getBuildTime() {
102-
return BUILD_PROPERTIES.getProperty("build-timestamp", "unknown");
102+
return BUILD_PROPERTIES.getProperty("Build-Time", "unknown");
103103
}
104104

105105
@Override

0 commit comments

Comments
 (0)