1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix typeof_simple_types_test.v

This commit is contained in:
Delyan Angelov 2022-04-15 21:21:44 +03:00
parent 675f8b6300
commit 82c5621621
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -22,7 +22,7 @@ fn test_typeof_for_builtin_int_types() {
assert typeof(int(1)).name == 'int'
// assert typeof(1).name == 'int_literal'
assert typeof(i64(1)).name == 'i64'
assert typeof(u8(1)).name == 'byte'
assert typeof(u8(1)).name == 'u8'
assert typeof(u16(1)).name == 'u16'
assert typeof(u32(1)).name == 'u32'
assert typeof(u64(1)).name == 'u64'