reflect: fix typo in unit test

Этот коммит содержится в:
Damian Gryski 2023-03-22 13:13:26 -07:00 коммит произвёл Ron Evans
родитель 6cb7f29d9b
коммит 3aa8c8e0d1

Просмотреть файл

@ -162,7 +162,7 @@ func TestTinyMap(t *testing.T) {
utKeys := refut.MapKeys()
// make sure keys extracted via reflection have the correct ype
// make sure keys extracted via reflection have the correct type
if _, ok := utKeys[0].Interface().(unmarshalerText); !ok {
t.Errorf("Map keys via MapKeys() have wrong type: %v", utKeys[0].Type().String())
}