Skip to content

Commit

Permalink
Fix the failing grid tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Oct 7, 2016
1 parent b29be53 commit 7c3e1c5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void testDefaults() {
assertNull(gnc.nodePolling);
assertNull(gnc.proxy);
assertNull(gnc.register);
assertNull(gnc.registerCycle);
assertEquals(5000, gnc.registerCycle.intValue());
assertNull(gnc.unregisterIfStillDownAfter);

//not a @Parameter
Expand All @@ -108,6 +108,7 @@ public void testAsJson() {

assertEquals("{\"capabilities\":[{\"browserName\":\"chrome\",\"platform\":\"LINUX\"}],"
+ "\"nodeStatusCheckTimeout\":5000,"
+ "\"registerCycle\":5000,"
+ "\"custom\":{},"
+ "\"maxSession\":1,"
+ "\"debug\":false,"
Expand Down

1 comment on commit 7c3e1c5

@lukeis
Copy link
Member

@lukeis lukeis commented on 7c3e1c5 Oct 7, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks :)

Please sign in to comment.