SQL: Rename DebugCsvSpec to match test naming convention
Original commit: elastic/x-pack-elasticsearch@7ad2dba5ec
This commit is contained in:
parent
09579eb630
commit
65ff793a19
|
@ -16,7 +16,7 @@ import java.sql.SQLException;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@TestLogging("org.elasticsearch.xpack.sql:TRACE")
|
@TestLogging("org.elasticsearch.xpack.sql:TRACE")
|
||||||
public class DebugCsvSpec extends CsvSpecIT {
|
public class DebugCsvSpecIT extends CsvSpecIT {
|
||||||
|
|
||||||
@ParametersFactory(shuffle = false, argumentFormatting = SqlSpecIT.PARAM_FORMATTING) // NOCOMMIT are we sure?!
|
@ParametersFactory(shuffle = false, argumentFormatting = SqlSpecIT.PARAM_FORMATTING) // NOCOMMIT are we sure?!
|
||||||
public static List<Object[]> readScriptSpec() throws Exception {
|
public static List<Object[]> readScriptSpec() throws Exception {
|
||||||
|
@ -26,7 +26,7 @@ public class DebugCsvSpec extends CsvSpecIT {
|
||||||
return readScriptSpec("/debug.csv-spec", parser);
|
return readScriptSpec("/debug.csv-spec", parser);
|
||||||
}
|
}
|
||||||
|
|
||||||
public DebugCsvSpec(String groupName, String testName, Integer lineNumber, Path source, CsvTestCase testCase) {
|
public DebugCsvSpecIT(String groupName, String testName, Integer lineNumber, Path source, CsvTestCase testCase) {
|
||||||
super(groupName, testName, lineNumber, source, testCase);
|
super(groupName, testName, lineNumber, source, testCase);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue