This is an automated email from the ASF dual-hosted git repository.
gfournier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 324844986 chore: Remove useless print
324844986 is described below
commit 32484498658027a785ea259815edfabc53a9ef1d
Author: Gaelle Fournier <[email protected]>
AuthorDate: Wed May 22 10:25:11 2024 +0200
chore: Remove useless print
---
e2e/common/traits/route_test.go | 1 -
1 file changed, 1 deletion(-)
diff --git a/e2e/common/traits/route_test.go b/e2e/common/traits/route_test.go
index a78d10286..89f4110d7 100644
--- a/e2e/common/traits/route_test.go
+++ b/e2e/common/traits/route_test.go
@@ -203,7 +203,6 @@ func TestRunRoutes(t *testing.T) {
g.Eventually(UnstructuredIntegration(t, ctx, ns,
integrationName)).ShouldNot(BeNil())
unstructuredIntegration := UnstructuredIntegration(t,
ctx, ns, integrationName)()
routeTrait, _, _ :=
unstructured.NestedMap(unstructuredIntegration.Object, "spec", "traits",
"route")
- fmt.Printf("len(routeTrait): %d\n", len(routeTrait))
g.Expect(routeTrait).ToNot(BeNil())
g.Expect(len(routeTrait)).To(Equal(1))
g.Expect(routeTrait["annotations"]).ToNot(BeNil())