Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

Commit

Permalink
fix chainTransliterations test
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed May 25, 2017
1 parent acde4da commit 932cf3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meowkov_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func TestAppendTransliterations(t *testing.T) {
test := func(input [][]string, expected [][]string) {
output := chainTransliterations(input)
if !reflect.DeepEqual(output, expected) {
t.Error("chainTransliterations returns incorrect chain groups")
t.Error("chainTransliterations returns incorrect chain groups: " + fmt.Sprintf("%#v", output) + ", expected: " + fmt.Sprintf("%#v", expected))
}
}

Expand All @@ -209,7 +209,7 @@ func TestAppendTransliterations(t *testing.T) {
test([][]string{
{"2", "3", "4"},
{"3", "4", "5"},
}, [][]string{})
}, [][]string(nil))
}

func TestContains(t *testing.T) {
Expand Down

0 comments on commit 932cf3d

Please sign in to comment.