Address review feedback

This commit is contained in:
vishalnayak 2016-07-22 10:21:45 -04:00
parent 32a72e84dc
commit 8dc3a830dc
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ package strutil
import "testing"
func TestStrutil_EquivalentSlices(t *testing.T) {
slice1 := []string{"test1", "test2", "test3"}
slice2 := []string{"test1", "test2", "test3"}
slice1 := []string{"test2", "test1", "test3"}
slice2 := []string{"test3", "test2", "test1"}
if !EquivalentSlices(slice1, slice2) {
t.Fatalf("bad: expected a match")
}