fix a typo in the logging package test suite

This commit is contained in:
Marten Seemann 2020-07-06 13:24:47 +07:00
parent 05f9428b34
commit d4720e43c7

View file

@ -0,0 +1,13 @@
package logging
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestLogging(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Logging Suite")
}