Skip to content

Commit

Permalink
Remove a redundant test case whose data source is unaccessible. see #28
Browse files Browse the repository at this point in the history
  • Loading branch information
chengscu committed Dec 26, 2019
1 parent 55f5868 commit c93206d
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,4 @@ public void testSkipBlankLine() throws Exception {

Assert.assertEquals(new CsvSourceBatchOp().setFilePath(filePath).setSchemaStr("f1 string").collect().size(), 1);
}

@Test
public void testReadEasModel() throws Exception {
String schema = "model_desc string,table_id bigint,t0_model_id bigint,t0_model_info string";
String path = "http://test-region.oss-cn-hangzhou-zmf.aliyuncs.com/alink_model_export/Alink-Expr-pre-6339/226607/model_data.csv";
new CsvSourceStreamOp().setFilePath(path).setSchemaStr(schema).setFieldDelimiter("\t").setQuoteChar(null).print();
StreamOperator.execute();
}
}

0 comments on commit c93206d

Please sign in to comment.