Skip to content

Commit 1e23c3e

Browse files
committed
Fix catalog source e2e test
1 parent 2d649b0 commit 1e23c3e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: test/e2e/catalog_e2e_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,9 @@ var _ = Describe("Catalog represents a store of bundles which OLM can use to ins
739739
Image: image,
740740
UpdateStrategy: &v1alpha1.UpdateStrategy{
741741
RegistryPoll: &v1alpha1.RegistryPoll{
742-
Interval: &metav1.Duration{Duration: 1 * time.Minute},
742+
// Using RawInterval rather than Interval due to this issue:
743+
// https://github.com/operator-framework/operator-lifecycle-manager/issues/2621
744+
RawInterval: "1m0s",
743745
},
744746
},
745747
},

0 commit comments

Comments
 (0)