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 9a946aee6f Removed Qdrant leftover test in JVM Integration tests 9a946aee6f is described below commit 9a946aee6f9718639f4010524cd7feb26110e4c1 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Apr 22 17:19:53 2024 +0200 Removed Qdrant leftover test in JVM Integration tests Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- .../quarkus/component/qdrant/it/QdrantTest.java | 34 ---------------------- 1 file changed, 34 deletions(-) diff --git a/integration-tests-jvm/qdrant/src/test/java/org/apache/camel/quarkus/component/qdrant/it/QdrantTest.java b/integration-tests-jvm/qdrant/src/test/java/org/apache/camel/quarkus/component/qdrant/it/QdrantTest.java deleted file mode 100644 index f9f15d204c..0000000000 --- a/integration-tests-jvm/qdrant/src/test/java/org/apache/camel/quarkus/component/qdrant/it/QdrantTest.java +++ /dev/null @@ -1,34 +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.qdrant.it; - -import io.quarkus.test.junit.QuarkusTest; -import io.restassured.RestAssured; -import org.junit.jupiter.api.Test; - -@QuarkusTest -class QdrantTest { - - @Test - public void loadComponentQdrant() { - /* A simple autogenerated test */ - RestAssured.get("/qdrant/load/component/qdrant") - .then() - .statusCode(200); - } - -}