diff options
Diffstat (limited to 'skate/zippy_test.go')
-rw-r--r-- | skate/zippy_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skate/zippy_test.go b/skate/zippy_test.go index c966d67..1448472 100644 --- a/skate/zippy_test.go +++ b/skate/zippy_test.go @@ -17,7 +17,7 @@ func TestLineColumn(t *testing.T) { {"1 2 3", "\t", 1, "1 2 3"}, } for _, c := range cases { - result := cut(c.line, c.sep, c.column) + result := CutSep(c.line, c.sep, c.column) if result != c.result { t.Fatalf("got %v, want %v", result, c.result) } |