Skip to content

Commit

Permalink
Correctly get build information
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Feb 15, 2017
1 parent f7b68e7 commit b94c902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/client/src/org/openqa/selenium/internal/BuildInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ public String getReleaseLabel() {

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

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

@Override
Expand Down

0 comments on commit b94c902

Please sign in to comment.