Skip to content

Commit c4e5907

Browse files
author
Stefan Steinhauser
committed
refactor: Fix file extension in IMPORT tests
1 parent 34fc6dd commit c4e5907

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/net/sf/jsqlparser/statement/imprt/ImportTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ public void testImportFromFileCSVCols(String sqlStr) throws JSQLParserException
7272

7373
@ParameterizedTest
7474
@ValueSource(strings = {
75-
"IMPORT FROM LOCAL FBV FILE 'file.csv'",
76-
"IMPORT FROM LOCAL FBV FILE 'file1.csv' FILE 'file2.csv'",
75+
"IMPORT FROM LOCAL FBV FILE 'file.fbv'",
76+
"IMPORT FROM LOCAL FBV FILE 'file1.fbv' FILE 'file2.fbv'",
7777

78-
"IMPORT FROM LOCAL SECURE FBV FILE 'file.csv'",
79-
"IMPORT FROM LOCAL SECURE FBV FILE 'file1.csv' FILE 'file2.csv'"
78+
"IMPORT FROM LOCAL SECURE FBV FILE 'file.fbv'",
79+
"IMPORT FROM LOCAL SECURE FBV FILE 'file1.fbv' FILE 'file2.fbv'"
8080
})
8181
public void testImportFromFileFBV(String sqlStr) throws JSQLParserException {
8282
TestUtils.assertSqlCanBeParsedAndDeparsed(sqlStr);

0 commit comments

Comments
 (0)