bba1bd9d3d
This refactors a large part of the codebase using the suggestions from golangci-lint Change-Id: I2b7735086a64e50f3d5e0b30c225870bddc70935
14 lines
185 B
Go
14 lines
185 B
Go
package util_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestUtil(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Util Suite")
|
|
}
|