Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Signed-off-by: EdricCua <[email protected]>
  • Loading branch information
EdricCua committed Jan 23, 2025
1 parent 0df07d4 commit 392d540
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/integTest/standalone_commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,9 @@ func (suite *GlideTestSuite) TestSortReadOnlyWithOptions_SuccessfulSortByWeightA
assert.Equal(suite.T(), "item3", sortResult[5].Value())
}

func (suite *GlideTestSuite) DBSize_Success() {
func (suite *GlideTestSuite) TestDBSize() {
client := suite.defaultClient()
result, err := client.DBSize()
assert.Nil(suite.T(), err)
assert.Greater(suite.T(), result, -0)
assert.GreaterOrEqual(suite.T(), result, -0)
}

0 comments on commit 392d540

Please sign in to comment.