quick fix

This commit is contained in:
Radu Ioan Fericean
2013-10-09 20:05:51 +03:00
parent 54ab6074a6
commit 5b4e7a1234

View File

@@ -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)
}