From 5b4e7a12346b178e262b16dd7e8f32af50208fd9 Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Wed, 9 Oct 2013 20:05:51 +0300 Subject: [PATCH] quick fix --- utils/utils_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/utils_test.go b/utils/utils_test.go index d642bac42..94bde469d 100644 --- a/utils/utils_test.go +++ b/utils/utils_test.go @@ -235,14 +235,14 @@ func TestRound(t *testing.T) { } func TestSplitPrefix(t *testing.T) { - a := SplitPrefix("0123456789") + a := SplitPrefixInterface("0123456789") if len(a) != 9 { t.Error("Error splitting prefix: ", a) } } func TestSplitPrefixEmpty(t *testing.T) { - a := SplitPrefix("") + a := SplitPrefixInterface("") if len(a) != 0 { t.Error("Error splitting prefix: ", a) }