This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new d085c55147 Remove unnecessary OpenTelemetry test code, as the image is
already set in application.properties
d085c55147 is described below
commit d085c551471883c2e8929341103e1e66c2a26c86
Author: Lukas Lowinger <[email protected]>
AuthorDate: Wed Oct 8 13:44:40 2025 +0200
Remove unnecessary OpenTelemetry test code, as the image is already set in
application.properties
---
.../opentelemetry/it/OpenTelemetryTest.java | 2 --
.../it/OpenTelemetryTestResource.java | 37 ----------------------
2 files changed, 39 deletions(-)
diff --git
a/integration-tests/opentelemetry/src/test/java/org/apache/camel/quarkus/component/opentelemetry/it/OpenTelemetryTest.java
b/integration-tests/opentelemetry/src/test/java/org/apache/camel/quarkus/component/opentelemetry/it/OpenTelemetryTest.java
index c27b830f83..7c3b89b231 100644
---
a/integration-tests/opentelemetry/src/test/java/org/apache/camel/quarkus/component/opentelemetry/it/OpenTelemetryTest.java
+++
b/integration-tests/opentelemetry/src/test/java/org/apache/camel/quarkus/component/opentelemetry/it/OpenTelemetryTest.java
@@ -21,7 +21,6 @@ import java.util.Map;
import java.util.concurrent.TimeUnit;
import io.opentelemetry.api.trace.SpanKind;
-import io.quarkus.test.common.QuarkusTestResource;
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import org.junit.jupiter.api.AfterEach;
@@ -33,7 +32,6 @@ import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
-@QuarkusTestResource(OpenTelemetryTestResource.class)
@QuarkusTest
class OpenTelemetryTest {
diff --git
a/integration-tests/opentelemetry/src/test/java/org/apache/camel/quarkus/component/opentelemetry/it/OpenTelemetryTestResource.java
b/integration-tests/opentelemetry/src/test/java/org/apache/camel/quarkus/component/opentelemetry/it/OpenTelemetryTestResource.java
deleted file mode 100644
index 3abd3f6e36..0000000000
---
a/integration-tests/opentelemetry/src/test/java/org/apache/camel/quarkus/component/opentelemetry/it/OpenTelemetryTestResource.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.quarkus.component.opentelemetry.it;
-
-import java.util.Map;
-
-import io.quarkus.test.common.QuarkusTestResourceLifecycleManager;
-import org.eclipse.microprofile.config.ConfigProvider;
-
-public class OpenTelemetryTestResource implements
QuarkusTestResourceLifecycleManager {
- private static final String POSTGRES_IMAGE_NAME =
ConfigProvider.getConfig().getValue("postgres.container.image",
- String.class);
-
- @Override
- public Map<String, String> start() {
- return Map.of("quarkus.datasource.devservices.image-name",
POSTGRES_IMAGE_NAME);
- }
-
- @Override
- public void stop() {
- // Noop
- }
-}