Fix broken smoke test (#1393)

This commit is contained in:
Anthony Keenan 2018-09-14 14:17:15 +01:00 committed by GitHub
parent 9a33a7f51f
commit fa6827ceaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ class PluginRegistrationTest {
// Install plugin Jars in node directory, then start the node and close it
val consoleOutput = temporaryFolder.newFile("node-stdout.txt")
val nodeJvmArgs = arrayOf("-logging-level", "DEBUG", "-no-local-shell", "-log-to-console")
val nodeJvmArgs = arrayOf("--logging-level", "DEBUG", "--no-local-shell", "--log-to-console")
NodeProcess.Factory(extraJvmArgs = nodeJvmArgs, redirectConsoleTo = consoleOutput)
.setupPlugins(config, listOf(pluginJarFile))
.create(config)