Skip to content

Commit

Permalink
Skip the correct test
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Jul 15, 2024
1 parent 8f09fef commit ae9a1cc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions go/test/endtoend/vtgate/queries/misc/misc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,6 @@ func TestHexVals(t *testing.T) {
}

func TestDateTimeTimestampVals(t *testing.T) {
version, err := cluster.GetMajorVersion("vtgate")
require.NoError(t, err)
if version != 19 {
t.Skip("cannot run upgrade/downgrade test")
}

mcmp, closer := start(t)
defer closer()

Expand All @@ -121,6 +115,12 @@ func TestInvalidDateTimeTimestampVals(t *testing.T) {
}

func TestJoinWithThreeTables(t *testing.T) {
version, err := cluster.GetMajorVersion("vtgate")
require.NoError(t, err)
if version != 19 {
t.Skip("cannot run upgrade/downgrade test")
}

mcmp, closer := start(t)
defer closer()

Expand Down

0 comments on commit ae9a1cc

Please sign in to comment.