summaryrefslogtreecommitdiff
path: root/internal/testutil
diff options
context:
space:
mode:
Diffstat (limited to 'internal/testutil')
-rw-r--r--internal/testutil/fixtures_test.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/internal/testutil/fixtures_test.go b/internal/testutil/fixtures_test.go
index 8c603d8..7c7f239 100644
--- a/internal/testutil/fixtures_test.go
+++ b/internal/testutil/fixtures_test.go
@@ -3,7 +3,10 @@ package testutil
import "testing"
func TestFixtures_ZeroCovTargets(t *testing.T) {
- if MarkdownCodeFence() == "" { t.Fatal("MarkdownCodeFence empty") }
- if MalformedJSON() == "" { t.Fatal("MalformedJSON empty") }
+ if MarkdownCodeFence() == "" {
+ t.Fatal("MarkdownCodeFence empty")
+ }
+ if MalformedJSON() == "" {
+ t.Fatal("MalformedJSON empty")
+ }
}
-