Skip to content

Commit

Permalink
Merge pull request #251 from another-dave/master
Browse files Browse the repository at this point in the history
Setting to 'String' type in initialisation of list.
  • Loading branch information
detro committed Aug 17, 2013
2 parents 53691fa + 316ddd8 commit cd01ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/java/src/test/java/ghostdriver/BaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public static void configure() throws IOException {
// "--ssl-protocol=any",
// "--ignore-ssl-errors=true"
// });
ArrayList<String> cliArgsCap = new ArrayList<>();
ArrayList<String> cliArgsCap = new ArrayList<String>();
cliArgsCap.add("--web-security=false");
cliArgsCap.add("--ssl-protocol=any");
cliArgsCap.add("--ignore-ssl-errors=true");
Expand Down

0 comments on commit cd01ddb

Please sign in to comment.