Correct output type of flapping test

The Roc program in this test returns a U8, but the tested type is marked
as a U16, so it's possible we were just picking up garbage bytes.

Closes #2997
This commit is contained in:
Ayaz Hafiz 2022-05-04 12:49:07 -04:00
parent cad6ac7bf9
commit 4304c2c2f0
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -3225,7 +3225,7 @@ fn upcast_of_int_checked_is_zext() {
"#
),
1,
u16
u8
)
}