@@ -301,7 +301,7 @@ var _ = Describe("Catalog", func() {
301
301
subscription , err := fetchSubscription (GinkgoT (), crc , testNamespace , subscriptionName , subscriptionStateAtLatestChecker )
302
302
require .NoError (GinkgoT (), err )
303
303
require .NotNil (GinkgoT (), subscription )
304
- _ , err = fetchCSV (GinkgoT (), crc , subscription .Status .CurrentCSV , testNamespace , buildCSVConditionChecker (v1alpha1 .CSVPhaseSucceeded ))
304
+ _ , err = fetchCSV (crc , subscription .Status .CurrentCSV , testNamespace , buildCSVConditionChecker (v1alpha1 .CSVPhaseSucceeded ))
305
305
require .NoError (GinkgoT (), err )
306
306
307
307
ipList , err := crc .OperatorsV1alpha1 ().InstallPlans (testNamespace ).List (metav1.ListOptions {})
@@ -389,7 +389,7 @@ var _ = Describe("Catalog", func() {
389
389
subscription , err := fetchSubscription (GinkgoT (), crc , testNamespace , subscriptionName , subscriptionStateAtLatestChecker )
390
390
require .NoError (GinkgoT (), err )
391
391
require .NotNil (GinkgoT (), subscription )
392
- _ , err = fetchCSV (GinkgoT (), crc , subscription .Status .CurrentCSV , testNamespace , buildCSVConditionChecker (v1alpha1 .CSVPhaseSucceeded ))
392
+ _ , err = fetchCSV (crc , subscription .Status .CurrentCSV , testNamespace , buildCSVConditionChecker (v1alpha1 .CSVPhaseSucceeded ))
393
393
require .NoError (GinkgoT (), err )
394
394
})
395
395
It ("gRPC address catalog source" , func () {
@@ -518,7 +518,7 @@ var _ = Describe("Catalog", func() {
518
518
subscription , err := fetchSubscription (GinkgoT (), crc , testNamespace , subscriptionName , subscriptionStateAtLatestChecker )
519
519
require .NoError (GinkgoT (), err )
520
520
require .NotNil (GinkgoT (), subscription )
521
- _ , err = fetchCSV (GinkgoT (), crc , subscription .Status .CurrentCSV , testNamespace , csvSucceededChecker )
521
+ _ , err = fetchCSV (crc , subscription .Status .CurrentCSV , testNamespace , csvSucceededChecker )
522
522
require .NoError (GinkgoT (), err )
523
523
524
524
// Update the catalog's address to point at the other registry pod's cluster ip
@@ -590,7 +590,7 @@ var _ = Describe("Catalog", func() {
590
590
require .NotNil (GinkgoT (), subscription )
591
591
592
592
// Wait for csv to succeed
593
- _ , err = fetchCSV (GinkgoT (), crc , subscription .Status .CurrentCSV , testNamespace , csvSucceededChecker )
593
+ _ , err = fetchCSV (crc , subscription .Status .CurrentCSV , testNamespace , csvSucceededChecker )
594
594
require .NoError (GinkgoT (), err )
595
595
596
596
// Delete the registry pod
@@ -675,7 +675,7 @@ var _ = Describe("Catalog", func() {
675
675
require .NotNil (GinkgoT (), subscription )
676
676
677
677
// Wait for csv to succeed
678
- _ , err = fetchCSV (GinkgoT (), crc , subscription .Status .CurrentCSV , subscription .GetNamespace (), csvSucceededChecker )
678
+ _ , err = fetchCSV (crc , subscription .Status .CurrentCSV , subscription .GetNamespace (), csvSucceededChecker )
679
679
require .NoError (GinkgoT (), err )
680
680
681
681
// Delete the registry pod
@@ -829,7 +829,7 @@ var _ = Describe("Catalog", func() {
829
829
require .NotNil (GinkgoT (), subscription )
830
830
831
831
// Wait for csv to succeed
832
- _ , err = fetchCSV (GinkgoT (), crc , subscription .Status .CurrentCSV , subscription .GetNamespace (), csvSucceededChecker )
832
+ _ , err = fetchCSV (crc , subscription .Status .CurrentCSV , subscription .GetNamespace (), csvSucceededChecker )
833
833
require .NoError (GinkgoT (), err )
834
834
835
835
registryCheckFunc := func (podList * corev1.PodList ) bool {
@@ -920,7 +920,7 @@ var _ = Describe("Catalog", func() {
920
920
require .NotNil (GinkgoT (), subscription )
921
921
922
922
// Wait for csv to succeed
923
- csv , err := fetchCSV (GinkgoT (), crc , subscription .Status .CurrentCSV , subscription .GetNamespace (), csvSucceededChecker )
923
+ csv , err := fetchCSV (crc , subscription .Status .CurrentCSV , subscription .GetNamespace (), csvSucceededChecker )
924
924
require .NoError (GinkgoT (), err )
925
925
926
926
// check version of running csv to ensure the latest version (0.9.2) was installed onto the cluster
0 commit comments