From 807038be66f00612f65b602349a0d922f34d59c4 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 15 Apr 2022 21:22:32 +0300 Subject: [PATCH] ci: fix typeof_simple_types_test.v --- vlib/v/tests/typeof_simple_types_test.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vlib/v/tests/typeof_simple_types_test.v b/vlib/v/tests/typeof_simple_types_test.v index d7a259852a..67cb93fc48 100644 --- a/vlib/v/tests/typeof_simple_types_test.v +++ b/vlib/v/tests/typeof_simple_types_test.v @@ -26,6 +26,9 @@ fn test_typeof_for_builtin_int_types() { assert typeof(u16(1)).name == 'u16' assert typeof(u32(1)).name == 'u32' assert typeof(u64(1)).name == 'u64' + // + assert typeof(byte(1)).name == 'byte' + assert typeof(char(1)).name == 'char' } fn test_typeof_for_builtin_float_types() {