We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7b68e7 commit b94c902Copy full SHA for b94c902
java/client/src/org/openqa/selenium/internal/BuildInfo.java
@@ -94,12 +94,12 @@ public String getReleaseLabel() {
94
95
/** @return The embedded build revision or "unknown". */
96
public String getBuildRevision() {
97
- return BUILD_PROPERTIES.getProperty("build-revision", "unknown");
+ return BUILD_PROPERTIES.getProperty("Build-Revision", "unknown");
98
}
99
100
/** @return The embedded build time or "unknown". */
101
public String getBuildTime() {
102
- return BUILD_PROPERTIES.getProperty("build-timestamp", "unknown");
+ return BUILD_PROPERTIES.getProperty("Build-Time", "unknown");
103
104
105
@Override
0 commit comments