mirror of
https://github.com/duke-git/lancet.git
synced 2026-03-01 00:35:28 +08:00
fix: fix TestInsertionSort
This commit is contained in:
@@ -92,7 +92,7 @@ func TestInsertionSort(t *testing.T) {
|
|||||||
sortedPeopleByAge := InsertionSort(peoples, comparator)
|
sortedPeopleByAge := InsertionSort(peoples, comparator)
|
||||||
t.Log(sortedPeopleByAge)
|
t.Log(sortedPeopleByAge)
|
||||||
|
|
||||||
expected := "[{e 28} {c 17} {a 20} {b 10} {d 8}]"
|
expected := "[{e 28} {a 20} {c 17} {b 10} {d 8}]"
|
||||||
actual := fmt.Sprintf("%v", sortedPeopleByAge)
|
actual := fmt.Sprintf("%v", sortedPeopleByAge)
|
||||||
|
|
||||||
asssert.Equal(expected, actual)
|
asssert.Equal(expected, actual)
|
||||||
|
|||||||
Reference in New Issue
Block a user