Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Vaillancourt <tim@timvaillancourt.com>
  • Loading branch information
timvaillancourt committed Feb 18, 2025
1 parent 6e63a87 commit d04e23e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions go/test/endtoend/reparent/semisync/semi_sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ import (
"vitess.io/vitess/go/mysql"
"vitess.io/vitess/go/test/endtoend/cluster"
"vitess.io/vitess/go/test/endtoend/reparent/utils"
e2eutils "vitess.io/vitess/go/test/endtoend/utils"
)

func TestSemiSyncUpgradeDowngrade(t *testing.T) {
if utils.BinaryIsAtLeastAtVersion(20, "vttablet") {
if e2eutils.BinaryIsAtLeastAtVersion(20, "vttablet") {
t.Skip("We only want to run this test for >= v20 vttablet")
}
if utils.BinaryIsAtLeastAtVersion(20, "vttabletold") {
if e2eutils.BinaryIsAtLeastAtVersion(20, "vttabletold") {
t.Skip("We only want to run this test for >= v20 vttablet")
}

Expand Down

0 comments on commit d04e23e

Please sign in to comment.