From 82f580042d7472e43178f0969d380729a5a556f0 Mon Sep 17 00:00:00 2001 From: quobix Date: Mon, 5 Aug 2024 09:14:07 -0400 Subject: [PATCH] another tiny cov bumpy --- utils/utils_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/utils_test.go b/utils/utils_test.go index ce98dc3..de315fc 100644 --- a/utils/utils_test.go +++ b/utils/utils_test.go @@ -676,6 +676,7 @@ func TestIsYAML(t *testing.T) { assert.False(t, IsYAML("{'hello':'there'}")) assert.False(t, IsYAML("")) assert.True(t, IsYAML("8908: hello: yeah: \n12309812: :123")) + assert.True(t, IsYAML("---")) } func TestConvertYAMLtoJSON(t *testing.T) {