Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public class MultiClusterSpecIT extends EsqlSpecTestCase {
private static RestClient remoteClusterClient;
private static DataLocation dataLocation = null;

@ParametersFactory(argumentFormatting = "%2$s.%3$s")
@ParametersFactory(argumentFormatting = "csv-spec:%2$s.%3$s")
public static List<Object[]> readScriptSpec() throws Exception {
List<URL> urls = classpathResources("/*.csv-spec");
assertTrue("Not enough specs found " + urls, urls.size() > 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public abstract class EsqlSpecTestCase extends ESRestTestCase {
protected final Mode mode;
protected static Boolean supportsTook;

@ParametersFactory(argumentFormatting = "%2$s.%3$s %7$s")
@ParametersFactory(argumentFormatting = "csv-spec:%2$s.%3$s %7$s")
public static List<Object[]> readScriptSpec() throws Exception {
List<URL> urls = classpathResources("/*.csv-spec");
assertTrue("Not enough specs found " + urls, urls.size() > 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public class CsvTests extends ESTestCase {
private ThreadPool threadPool;
private Executor executor;

@ParametersFactory(argumentFormatting = "%2$s.%3$s")
@ParametersFactory(argumentFormatting = "csv-spec:%2$s.%3$s")
public static List<Object[]> readScriptSpec() throws Exception {
List<URL> urls = classpathResources("/*.csv-spec");
assertThat("Not enough specs found " + urls, urls, hasSize(greaterThan(0)));
Expand Down