diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/UC1Benchmark.kt b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/UC1Benchmark.kt
index bebd07904c2c1bc3fd8c3d3e4585c1c54ad75832..23a712bfa72c08cf19c0e4845a33714755a6e2d0 100644
--- a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/UC1Benchmark.kt
+++ b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/UC1Benchmark.kt
@@ -94,3 +94,5 @@ class UC1Benchmark(config: Config) : AbstractBenchmark(config) {
         this.deploymentManager.setWorkloadEnv(this.wgDeployment, "workload-generator", environmentVariables)
         this.deploymentManager.deploy(this.wgDeployment)
     }
+
+}
diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/TestBenchmark.kt b/theodolite-quarkus/src/main/kotlin/theodolite/util/TestBenchmark.kt
index 0f32e24b0fbf9bdebb3aeaf4794a34ac481bd371..0358ff1a61a66fe0dd0380a3b56dc2e8fddd3fa0 100644
--- a/theodolite-quarkus/src/main/kotlin/theodolite/util/TestBenchmark.kt
+++ b/theodolite-quarkus/src/main/kotlin/theodolite/util/TestBenchmark.kt
@@ -1,11 +1,11 @@
 package theodolite.util
 
-import theodolite.k8s.UC1Benchmark
-
 class TestBenchmark : AbstractBenchmark(
-    UC1Benchmark.UC1BenchmarkConfig(
-        zookeeperConnectionString = "",
-        kafkaIPConnectionString = "",
+    AbstractBenchmark.Config(
+        clusterZookeeperConnectionString = "",
+        clusterKafkaConnectionString = "",
+        externalZookeeperConnectionString = "",
+        externalKafkaConnectionString = "",
         schemaRegistryConnectionString = "",
         kafkaTopics = emptyList(),
         kafkaReplication = 0,