mirror of
https://github.com/ceph/go-ceph
synced 2025-02-08 22:37:18 +00:00
rados: check errors in test when deleting pools
Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
parent
a1de43cd5d
commit
20311caff5
@ -413,7 +413,8 @@ func (suite *RadosTestSuite) TestGetLargePoolList() {
|
||||
|
||||
defer func(origPools []string) {
|
||||
for _, name := range names {
|
||||
suite.conn.DeletePool(name)
|
||||
err := suite.conn.DeletePool(name)
|
||||
assert.NoError(suite.T(), err)
|
||||
}
|
||||
cleanPools, err := suite.conn.ListPools()
|
||||
assert.NoError(suite.T(), err)
|
||||
|
Loading…
Reference in New Issue
Block a user