You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cl...@apache.org on 2024/01/25 18:52:56 UTC

(camel-k) 01/01: Fix: TestCreateCatalog fail when runtime is 3.6.0-SNAPSHOT

This is an automated email from the ASF dual-hosted git repository.

claudio4j pushed a commit to branch claudio4j-patch-2
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 81c68217aca4b2828f98169f0f90d2a0c9864836
Author: Claudio Miranda <cl...@claudius.com.br>
AuthorDate: Thu Jan 25 15:52:50 2024 -0300

    Fix: TestCreateCatalog fail when runtime is 3.6.0-SNAPSHOT
    
    Fix https://github.com/apache/camel-k/issues/5099
---
 pkg/controller/integrationplatform/catalog_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/controller/integrationplatform/catalog_test.go b/pkg/controller/integrationplatform/catalog_test.go
index e005f0e89..db4aabdaf 100644
--- a/pkg/controller/integrationplatform/catalog_test.go
+++ b/pkg/controller/integrationplatform/catalog_test.go
@@ -80,7 +80,7 @@ func TestCreateCatalog(t *testing.T) {
 	ip.Spec.Build.Registry.Address = defaults.OpenShiftRegistryAddress
 
 	ip.Status.Phase = v1.IntegrationPlatformPhaseCreateCatalog
-	ip.Spec.Build.RuntimeVersion = defaults.DefaultRuntimeVersion
+	ip.Spec.Build.RuntimeVersion = "3.2.3"
 
 	c, err := test.NewFakeClient(&ip)
 	assert.Nil(t, err)