From f598bbde4ee514ab3226c610a3b8d353b814b697 Mon Sep 17 00:00:00 2001 From: yuyi Date: Mon, 24 Apr 2023 17:04:13 +0800 Subject: [PATCH] tests: clean up c_struct_with_reserved_field_name_test.v (#18026) --- vlib/v/tests/c_struct_with_reserved_field_name_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/tests/c_struct_with_reserved_field_name_test.v b/vlib/v/tests/c_struct_with_reserved_field_name_test.v index 86281c232b..7b73bd733d 100644 --- a/vlib/v/tests/c_struct_with_reserved_field_name_test.v +++ b/vlib/v/tests/c_struct_with_reserved_field_name_test.v @@ -17,6 +17,6 @@ fn test_c_struct_with_reserved_field_name() { window_title: 'Polygons' ) game.gg = cont - println(game.gg) + game.gg.str() assert true }