diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmark.kt b/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmark.kt index 2d3dcb26117c9f6bfa336ea5816e142fbf403f9f..71e3cbcc78208cc4227e369d59d841e39adb87ed 100644 --- a/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmark.kt +++ b/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmark.kt @@ -12,7 +12,7 @@ class TestBenchmark : Benchmark { load: LoadDimension, res: Resource, configurationOverrides: List<ConfigurationOverride?>, - delay: Long + loadGenerationDelay: Long ): BenchmarkDeployment { return TestBenchmarkDeployment() } diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmarkExecutorImpl.kt b/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmarkExecutorImpl.kt index 18cdc9aaf53b94e37e06c30b71264f5e26ba55e9..294727d6a252a29e312ff532937e7fdf9f079ac7 100644 --- a/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmarkExecutorImpl.kt +++ b/theodolite-quarkus/src/test/kotlin/theodolite/TestBenchmarkExecutorImpl.kt @@ -14,7 +14,7 @@ class TestBenchmarkExecutorImpl( results: Results, slo: BenchmarkExecution.Slo, executionId: Int, - delay: Long + loadGenerationDelay: Long ) : BenchmarkExecutor( benchmark, @@ -23,7 +23,7 @@ class TestBenchmarkExecutorImpl( configurationOverrides = emptyList(), slo = slo, executionId = executionId, - delay = delay + loadGenerationDelay = loadGenerationDelay ) { override fun runExperiment(load: LoadDimension, res: Resource): Boolean {