Skip to content

Commit

Permalink
add version check in test
Browse files Browse the repository at this point in the history
Signed-off-by: TJ Zhang <[email protected]>
  • Loading branch information
TJ Zhang committed Jan 30, 2025
1 parent 9541888 commit 25c402e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions go/integTest/shared_commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7616,6 +7616,9 @@ func (suite *GlideTestSuite) TestBitFieldRO_MultipleGets() {

func (suite *GlideTestSuite) TestZInter() {
suite.runWithDefaultClients(func(client api.BaseClient) {
if suite.serverVersion < "6.2.0" {
suite.T().Skip("This feature was added in version 6.2.0")
}
key1 := "{key}-" + uuid.New().String()
key2 := "{key}-" + uuid.New().String()
key3 := "{key}-" + uuid.New().String()
Expand Down

0 comments on commit 25c402e

Please sign in to comment.