Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/build/tkn-bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ import (
- kubectl patch serviceaccount appstudio-pipeline -p '{"imagePullSecrets": [{"name": "docker-config"}], "secrets": [{"name": "docker-config"}]}'
*/

var _ = framework.TknBundleSuiteDescribe("tkn bundle task", Label("build-templates"), func() {
// Re-enable the test when https://issues.redhat.com/browse/KONFLUX-7413 is fixed
var _ = framework.TknBundleSuiteDescribe("tkn bundle task", Label("build-templates"), Pending, func() {

defer GinkgoRecover()

Expand Down Expand Up @@ -161,7 +162,7 @@ var _ = framework.TknBundleSuiteDescribe("tkn bundle task", Label("build-templat
GinkgoWriter.Printf("Fetching bundle image: %s\n", bundle)

Eventually(func() error {
return fetchImage(bundle, visitor)
return fetchImage(bundle, visitor)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there's a tab character instead of spaces

Copy link
Copy Markdown
Contributor Author

@tisutisu tisutisu Mar 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might be result of using go plugin in my vscode ..not any intentional change.

}, time.Minute*2, 2*time.Second).Should(Succeed(), "failed to fetch image %q", bundle)

},
Expand Down