From ff34ca73813e7e249b828f7fe8aaf8ccb142742f Mon Sep 17 00:00:00 2001 From: Christoph Deppisch Date: Tue, 16 Jan 2024 20:10:59 +0100 Subject: [PATCH] chore: Cosmetic changes --- examples/groovy/messaging.test.groovy | 19 ------------------- .../yaks/camelk/CamelKTestSteps.java | 2 +- 2 files changed, 1 insertion(+), 20 deletions(-) diff --git a/examples/groovy/messaging.test.groovy b/examples/groovy/messaging.test.groovy index 506a8f72..662ffbd6 100644 --- a/examples/groovy/messaging.test.groovy +++ b/examples/groovy/messaging.test.groovy @@ -15,25 +15,6 @@ * limitations under the License. */ -/* - * Copyright 2022 the original author or authors. - * - * 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. - */ - configuration { queues { queue('say-hello') diff --git a/java/steps/yaks-camel-k/src/test/java/org/citrusframework/yaks/camelk/CamelKTestSteps.java b/java/steps/yaks-camel-k/src/test/java/org/citrusframework/yaks/camelk/CamelKTestSteps.java index c3220731..d7659259 100644 --- a/java/steps/yaks-camel-k/src/test/java/org/citrusframework/yaks/camelk/CamelKTestSteps.java +++ b/java/steps/yaks-camel-k/src/test/java/org/citrusframework/yaks/camelk/CamelKTestSteps.java @@ -64,6 +64,6 @@ public void createIntegrationPod(String integrationName, String phase) { .endStatus() .build(); - k8sClient.pods().inNamespace(CamelKSettings.getNamespace()).create(pod); + k8sClient.pods().inNamespace(CamelKSettings.getNamespace()).resource(pod).create(); } }