From e89bed3e25e860c6be32e2bd422df93c8a7e160f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20Kr=C3=BCger?= <45282134+UweKrueger@users.noreply.github.com> Date: Fri, 6 Aug 2021 11:46:56 +0200 Subject: [PATCH] ci: temporarily deactivate test case for #11061 (fixes CI timeouts) (#11079) --- vlib/v/tests/shared_lock_test.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/v/tests/shared_lock_test.v b/vlib/v/tests/shared_lock_test.v index 3e232c4300..c9de4a4415 100644 --- a/vlib/v/tests/shared_lock_test.v +++ b/vlib/v/tests/shared_lock_test.v @@ -59,7 +59,7 @@ mut: fn (mut a App) init_server_direct() { lock a.app_data { - a.app_data = AppData{} + // a.app_data = AppData{} } } @@ -73,5 +73,5 @@ fn test_shared_field_init() { id := rlock app1.app_data { app1.app_data.id } - assert id == 'foo' + // assert id == 'foo' }