From 92f1da44622e3858edbeb103f995bee0be0f3d06 Mon Sep 17 00:00:00 2001 From: Kyoichiro Yamada Date: Sat, 19 Aug 2017 18:32:52 +0900 Subject: [PATCH] fix failing replace "SKIP:" label. --- editor/test/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/test/test.go b/editor/test/test.go index 159b0f4..b111f98 100644 --- a/editor/test/test.go +++ b/editor/test/test.go @@ -112,7 +112,7 @@ func (e *test) Edit(line string) (string, error) { editor.RegexRepl{ Exp: skiptail, Func: func(s string) string { - s = passtail.ReplaceAllString(s, "$1") + s = skiptail.ReplaceAllString(s, "$1") floors := strings.Split(s, `/`) processed = true style = config.C.SkipStyle