Skip to content

Commit

Permalink
fixup! fixup! feat: add ko test command to build with go test -c
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-d committed Nov 5, 2024
1 parent 854fbcd commit 8d932eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test/dummy_test.go → test/test/empty_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
})
}

0 comments on commit 8d932eb

Please sign in to comment.