Skip to content

Commit

Permalink
Fix storagecluster version in odfinfoconfig unit test
Browse files Browse the repository at this point in the history
Update storagcluster version in odfinfoconfig test to 4.17

Signed-off-by: Nikhil-Ladha <[email protected]>
  • Loading branch information
Nikhil-Ladha committed May 20, 2024
1 parent ec44394 commit 09f1c19
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions controllers/storagecluster/odfinfoconfig_test.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package storagecluster

import (
"os"
"testing"

"github.com/red-hat-storage/ocs-operator/api/v4/v1alpha1"
"github.com/red-hat-storage/ocs-operator/v4/controllers/util"
"k8s.io/apimachinery/pkg/types"
"os"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/yaml"
"testing"

api "github.com/red-hat-storage/ocs-operator/api/v4/v1"
"gotest.tools/v3/assert"
Expand Down Expand Up @@ -38,7 +39,7 @@ func TestOdfInfoConfig(t *testing.T) {
Kind: "StorageSystem",
APIVersion: "v1",
},
ocsVersion: "3.16.0",
ocsVersion: "3.17.0",
deploymentType: odfDeploymentTypeInternal,
storageClusterNamespacedName: types.NamespacedName{Name: "storage-test", Namespace: namespace},
cephClusterFSID: cephFSID,
Expand All @@ -52,7 +53,7 @@ func TestOdfInfoConfig(t *testing.T) {
Kind: "StorageSystem",
APIVersion: "v1",
},
ocsVersion: "3.16.0",
ocsVersion: "3.17.0",
deploymentType: odfDeploymentTypeInternal,
storageClusterNamespacedName: types.NamespacedName{Name: "storage-test", Namespace: namespace},
cephClusterFSID: cephFSID,
Expand Down

0 comments on commit 09f1c19

Please sign in to comment.