diff --git a/test/test/dummy_test.go b/test/test/empty_test.go similarity index 85% rename from test/test/dummy_test.go rename to test/test/empty_test.go index c6033e8c6..99d554702 100644 --- a/test/test/dummy_test.go +++ b/test/test/empty_test.go @@ -16,8 +16,8 @@ package test import "testing" -func TestDummy(t *testing.T) { - t.Run("dummy test", func(t *testing.T) { - t.Logf("this is a dummy test") +func TestEmpty(t *testing.T) { + t.Run("empty test", func(t *testing.T) { + t.Logf("this is an empty test") }) }