Skip to content

Commit

Permalink
skipping edge case test for v3 of neo
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Solender committed May 12, 2022
1 parent 2d73295 commit cb8a672
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,13 @@ type Middle struct {
}

func (integrationTest *IntegrationTestSuite) TestMultiSaveEdgeCase() {
// skipping multidb integration test for v3
if integrationTest.gogm.boltMajorVersion < 4 {
integrationTest.T().Log("skipping because of incompatible version", integrationTest.gogm.boltMajorVersion)
integrationTest.T().Skip()
return
}

/*
(left)--(middle)--(right)
|
Expand Down

0 comments on commit cb8a672

Please sign in to comment.