Skip to content

Commit

Permalink
rados: skip TestPingMonitor test
Browse files Browse the repository at this point in the history
Related to: #921

Signed-off-by: Sven Anderson <sven@redhat.com>
  • Loading branch information
ansiwen authored and mergify[bot] committed Sep 25, 2023
1 parent 291244b commit 9408dd5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rados/rados_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (suite *RadosTestSuite) TearDownSuite() {
}

func TestVersion(t *testing.T) {
var major, minor, patch = Version()
major, minor, patch := Version()
assert.False(t, major < 0 || major > 1000, "invalid major")
assert.False(t, minor < 0 || minor > 1000, "invalid minor")
assert.False(t, patch < 0 || patch > 1000, "invalid patch")
Expand Down Expand Up @@ -456,6 +456,7 @@ func (suite *RadosTestSuite) TestGetLargePoolList() {
}

func (suite *RadosTestSuite) TestPingMonitor() {
suite.T().SkipNow() // until #921 is fixed
suite.SetupConnection()

// mon id that should work with vstart.sh
Expand Down

0 comments on commit 9408dd5

Please sign in to comment.