ceph: remove use of boolean literal in expression

Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2020-04-08 16:49:32 -04:00 committed by John Mulligan
parent 20311caff5
commit b7a3914f3b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import (
)
func TestImports(t *testing.T) {
if assert.Equal(t, 1, 1) != true {
if !assert.Equal(t, 1, 1) {
t.Error("Something is wrong.")
}
}