We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72bc686 commit c1d2bb2Copy full SHA for c1d2bb2
test/indexes_test.go
@@ -482,6 +482,10 @@ func TestNamedIndexesClusterInventory(t *testing.T) {
482
483
for _, testCase := range namedIndexTestCases {
484
t.Run(fmt.Sprintf("TestNamedIndexes%s", testCase.Name), func(t *testing.T) {
485
+ if testCase.MinVersion != nil {
486
+ skipBelowVersion(c, *testCase.MinVersion, t)
487
+ }
488
+
489
// Check if index name is forwarded through out all APIs
490
idx, err := testCase.CreateCallback(col, testCase.Name)
491
if err != nil {
0 commit comments