test: cleanup after #24457 - remove wrong comment since bug has been fixed (#24464)

This commit is contained in:
Felipe Pena 2025-05-12 12:06:07 -03:00 committed by GitHub
parent e93c344b56
commit 4578af33aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,6 @@ pub fn decode[T](val string) !T {
fn (mut decoder Decoder) decode_value[T](mut val T) ! {
$if T.unaliased_typ is $array {
// checking wrongly. `decode_array` think that `[]?int` is `[]int`
decoder.decode_array(mut val)!
return
} $else $if T.unaliased_typ is $struct {