update url for test

This commit is contained in:
Jonathan Shook
2023-10-26 15:12:58 -05:00
parent 714fbf55e7
commit 4705993915

View File

@@ -150,9 +150,9 @@ public class NBCLIScenarioParserTest {
@Test @Test
public void testThatScenarioUrlsAreSupported() { public void testThatScenarioUrlsAreSupported() {
//TODO: This might change? //TODO: This might change?
String urlScenario = "https://raw.githubusercontent.com/nosqlbench/nosqlbench/main/engine-cli/src/test/resources/activities/scenario-test.yaml"; String urlScenario = "https://raw.githubusercontent.com/nosqlbench/nosqlbench/main/engine-cli/src/test/resources/activities/scenario_test.yaml";
NBCLIOptions opts = new NBCLIOptions(new String[]{urlScenario, "schema-only", "cycles-test=20"}); NBCLIOptions opts = new NBCLIOptions(new String[]{urlScenario, "schema_only", "cycles-test=20"});
List<Cmd> cmds = opts.getCommands(); List<Cmd> cmds = opts.getCommands();
assertThat(cmds.size()).isGreaterThan(0); assertThat(cmds.size()).isGreaterThan(0);
} }