Skip to content
Snippets Groups Projects
Commit 42b91355 authored by Sören Henning's avatar Sören Henning
Browse files

Fix missing test adjustment

parent 77aaef4a
No related branches found
No related tags found
3 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Pipeline #3199 passed
...@@ -14,7 +14,8 @@ class TestBenchmarkExecutorImpl( ...@@ -14,7 +14,8 @@ class TestBenchmarkExecutorImpl(
results: Results, results: Results,
slo: BenchmarkExecution.Slo, slo: BenchmarkExecution.Slo,
executionId: Int, executionId: Int,
loadGenerationDelay: Long loadGenerationDelay: Long,
afterTeardownDelay: Long
) : ) :
BenchmarkExecutor( BenchmarkExecutor(
benchmark, benchmark,
...@@ -23,7 +24,8 @@ class TestBenchmarkExecutorImpl( ...@@ -23,7 +24,8 @@ class TestBenchmarkExecutorImpl(
configurationOverrides = emptyList(), configurationOverrides = emptyList(),
slo = slo, slo = slo,
executionId = executionId, executionId = executionId,
loadGenerationDelay = loadGenerationDelay loadGenerationDelay = loadGenerationDelay,
afterTeardownDelay = afterTeardownDelay
) { ) {
override fun runExperiment(load: LoadDimension, res: Resource): Boolean { override fun runExperiment(load: LoadDimension, res: Resource): Boolean {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment