From 4ff48247f6ad534d9b2dff48451f519edfad2b5e Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Sun, 19 May 2024 22:21:31 +0100 Subject: [PATCH] fix: remove debug printout from test that shouldn't have been committed --- tag/tag_test.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tag/tag_test.go b/tag/tag_test.go index eea0c51..5c5958d 100644 --- a/tag/tag_test.go +++ b/tag/tag_test.go @@ -29,11 +29,7 @@ func Test_LoadPath(t *testing.T) { func Test_normaliseName(t *testing.T) { assert.Equal(t, "test-tag-name", normaliseName("Test TAG name")) assert.Equal(t, "already-normalised", normaliseName("already-normalised")) - tags, _ := LoadAll() - for name, _ := range tags { - t.Logf("tag: %v", name) - } - } +} func Test_MarshalYAML(t *testing.T) {