From 8d932eb1d94d5e2ca8e20f6b602edb5b245d019e Mon Sep 17 00:00:00 2001 From: Vincent Dupont Date: Tue, 5 Nov 2024 12:02:50 +0100 Subject: [PATCH] fixup! fixup! feat: add ko test command to build with go test -c --- test/test/{dummy_test.go => empty_test.go} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename test/test/{dummy_test.go => empty_test.go} (85%) 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") }) }