From 409fc2b1ee2af730db9d08b0d623589002d12354 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 15 Apr 2022 21:21:44 +0300 Subject: [PATCH] ci: fix typeof_simple_types_test.v --- vlib/v/tests/typeof_simple_types_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/tests/typeof_simple_types_test.v b/vlib/v/tests/typeof_simple_types_test.v index 000daf9f1f..d7a259852a 100644 --- a/vlib/v/tests/typeof_simple_types_test.v +++ b/vlib/v/tests/typeof_simple_types_test.v @@ -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'