go-ceph/package_test.go
John Mulligan b7a3914f3b ceph: remove use of boolean literal in expression
Signed-off-by: John Mulligan <jmulligan@redhat.com>
2020-04-09 13:11:05 -04:00

13 lines
175 B
Go

package ceph
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestImports(t *testing.T) {
if !assert.Equal(t, 1, 1) {
t.Error("Something is wrong.")
}
}