Skip to content

Commit

Permalink
[Connector-v2][file-local] Fix e2e error (apache#4650)
Browse files Browse the repository at this point in the history
  • Loading branch information
kim-up authored Apr 24, 2023
1 parent c8a5d52 commit 88c5689
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void testLocalFileReadAndWrite(TestContainer container)
Container.ExecResult excelProjectionReadResult =
container.executeJob("/excel/local_excel_projection_to_assert.conf");
Assertions.assertEquals(
0, excelReadResult.getExitCode(), excelProjectionReadResult.getStderr());
0, excelProjectionReadResult.getExitCode(), excelProjectionReadResult.getStderr());
// test write local text file
Container.ExecResult textWriteResult =
container.executeJob("/text/fake_to_local_file_text.conf");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ env {

source {
LocalFile {
path = "/seatunnel/read/parquet"
file_format_type = "parquet"
path = "/seatunnel/read/orc"
file_format_type = "orc"
result_table_name = "fake"
}
}
Expand Down

0 comments on commit 88c5689

Please sign in to comment.