@@ -185,7 +185,7 @@ func TestScratchSetInMap(t *testing.T) {
185185 scratch .SetInMap ("key" , "zyx" , "Zyx" )
186186 scratch .SetInMap ("key" , "abc" , "Abc (updated)" )
187187 scratch .SetInMap ("key" , "def" , "Def" )
188- c .Assert (scratch .GetSortedMapValues ("key" ), qt .DeepEquals , []any {0 : "Abc (updated)" , 1 : "Def" , 2 : "Lux" , 3 : "Zyx" })
188+ c .Assert (scratch .GetSortedMapValues ("key" ), qt .DeepEquals , any ( []any {"Abc (updated)" , "Def" , "Lux" , "Zyx" }) )
189189}
190190
191191func TestScratchDeleteInMap (t * testing.T ) {
@@ -199,7 +199,7 @@ func TestScratchDeleteInMap(t *testing.T) {
199199 scratch .DeleteInMap ("key" , "abc" )
200200 scratch .SetInMap ("key" , "def" , "Def" )
201201 scratch .DeleteInMap ("key" , "lmn" ) // Do nothing
202- c .Assert (scratch .GetSortedMapValues ("key" ), qt .DeepEquals , []any {0 : "Def" , 1 : "Lux" , 2 : "Zyx" })
202+ c .Assert (scratch .GetSortedMapValues ("key" ), qt .DeepEquals , any ( []any {"Def" , "Lux" , "Zyx" }) )
203203}
204204
205205func TestScratchGetSortedMapValues (t * testing.T ) {
0 commit comments