Skip to content

Commit

Permalink
JENKINS-12880 Changed os key to be uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
rossrowe committed Feb 26, 2012
1 parent a3949e2 commit 18855a2
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -115,9 +115,10 @@ public void buildEnvVars(Map<String, String> env) {
Browser browserInstance = BrowserFactory.getInstance().forKey(browser);
JSONObject config = new JSONObject();
try {
config.put("os", browserInstance.getOs());
config.put("os", browserInstance.getPlatform().toString());
config.put("browser", browserInstance.getBrowserName());
config.put("browser-version", browserInstance.getVersion());
config.put("url", browserInstance.getUri());
} catch (JSONException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
Expand Down

0 comments on commit 18855a2

Please sign in to comment.