aboutsummaryrefslogtreecommitdiffstats
path: root/skate/zippy_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'skate/zippy_test.go')
-rw-r--r--skate/zippy_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/skate/zippy_test.go b/skate/zippy_test.go
index 49f4a54..c966d67 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 := lineColumn(c.line, c.sep, c.column)
+ result := cut(c.line, c.sep, c.column)
if result != c.result {
t.Fatalf("got %v, want %v", result, c.result)
}