Skip to content
Snippets Groups Projects
Commit d873ecba authored by Benedikt Wetzel's avatar Benedikt Wetzel Committed by Sören Henning
Browse files

fix broken tests

parent 4c857ea9
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!135Add delay before start the load generator,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
...@@ -12,7 +12,7 @@ class TestBenchmark : Benchmark { ...@@ -12,7 +12,7 @@ class TestBenchmark : Benchmark {
load: LoadDimension, load: LoadDimension,
res: Resource, res: Resource,
configurationOverrides: List<ConfigurationOverride?>, configurationOverrides: List<ConfigurationOverride?>,
delay: Long loadGenerationDelay: Long
): BenchmarkDeployment { ): BenchmarkDeployment {
return TestBenchmarkDeployment() return TestBenchmarkDeployment()
} }
......
...@@ -14,7 +14,7 @@ class TestBenchmarkExecutorImpl( ...@@ -14,7 +14,7 @@ class TestBenchmarkExecutorImpl(
results: Results, results: Results,
slo: BenchmarkExecution.Slo, slo: BenchmarkExecution.Slo,
executionId: Int, executionId: Int,
delay: Long loadGenerationDelay: Long
) : ) :
BenchmarkExecutor( BenchmarkExecutor(
benchmark, benchmark,
...@@ -23,7 +23,7 @@ class TestBenchmarkExecutorImpl( ...@@ -23,7 +23,7 @@ class TestBenchmarkExecutorImpl(
configurationOverrides = emptyList(), configurationOverrides = emptyList(),
slo = slo, slo = slo,
executionId = executionId, executionId = executionId,
delay = delay loadGenerationDelay = loadGenerationDelay
) { ) {
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