Skip to content

Commit

Permalink
ensure that TestUtil parser use double quotes by default (actual defa…
Browse files Browse the repository at this point in the history
…ult)
  • Loading branch information
Sebastien Poirier committed Mar 22, 2021
1 parent 2a22968 commit 6f33739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h2o-test-support/src/main/java/water/TestUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ public static Frame parseTestFile(String fname, String na_string, int check_head
Key[] res = {nfs._key};

// create new parseSetup in order to store our na_string
ParseSetup p = ParseSetup.guessSetup(res, new ParseSetup(DefaultParserProviders.GUESS_INFO,(byte) ',',true,
ParseSetup p = ParseSetup.guessSetup(res, new ParseSetup(DefaultParserProviders.GUESS_INFO,(byte) ',',false,
check_header,0,null,null,null,null,null, null, null));
if (skippedColumns != null) {
p.setSkippedColumns(skippedColumns);
Expand Down

0 comments on commit 6f33739

Please sign in to comment.