
This commit updates the import of ginkgo to v2 in all of the tests. Signed-off-by: liornoy <lnoy@redhat.com> Co-authored-by: Sascha Grunert <sgrunert@redhat.com>
14 lines
202 B
Go
14 lines
202 B
Go
package main_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestEchosvr(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "pkg/testutils/echosvr")
|
|
}
|