mirror of https://github.com/ceph/go-ceph
ceph: remove use of boolean literal in expression
Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
parent
20311caff5
commit
b7a3914f3b
|
@ -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.")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue