aboutsummaryrefslogtreecommitdiff
path: root/tagpreprocessor_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tagpreprocessor_test.go')
-rw-r--r--tagpreprocessor_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tagpreprocessor_test.go b/tagpreprocessor_test.go
index c5f59e9..2a5a785 100644
--- a/tagpreprocessor_test.go
+++ b/tagpreprocessor_test.go
@@ -48,11 +48,11 @@ func TestNewTagPreprocessor(t *testing.T) {
got, err := newTagPreprocessor(c.name, c.regex, c.repl)
if err != nil {
- test.Assert(t, "error", c.expErr, err.Error(), true)
+ test.Assert(t, `error`, c.expErr, err.Error())
continue
}
- test.Assert(t, "TagPreprocessor", c.exp, got, true)
+ test.Assert(t, `TagPreprocessor`, c.exp, got)
}
}
@@ -124,6 +124,6 @@ func TestPreprocess(t *testing.T) {
t.Log("got: ", got)
}
- test.Assert(t, "preprocess", c.exp, got, true)
+ test.Assert(t, `preprocess`, c.exp, got)
}
}