Skip to content

Commit

Permalink
Update map_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
samber authored Jul 29, 2024
1 parent 954ebe8 commit d75619a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion map_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func TestUniqValues(t *testing.T) {
is.Empty(r2)

r3 := UniqValues(map[string]int{"foo": 1, "bar": 2}, map[string]int{"baz": 3})
sort.Ints(r1)
sort.Ints(r3)
is.Equal(r3, []int{1, 2, 3})

r4 := UniqValues[string, int]()
Expand Down

0 comments on commit d75619a

Please sign in to comment.