From 990a5408511de29392d7c5d3e5dcce07d2932bbb Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 19 May 2022 11:30:36 +0300 Subject: [PATCH] tests: fix the push_work_on_channel.vv output --- vlib/v/tests/inout/push_work_on_channel.out | 1 - vlib/v/tests/inout/push_work_on_channel.vv | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/vlib/v/tests/inout/push_work_on_channel.out b/vlib/v/tests/inout/push_work_on_channel.out index 811762cb94..5fe50707f3 100644 --- a/vlib/v/tests/inout/push_work_on_channel.out +++ b/vlib/v/tests/inout/push_work_on_channel.out @@ -1,6 +1,5 @@ > main start > work started -> main ch.close called > work x: 0 > work x: 1 > work x: 2 diff --git a/vlib/v/tests/inout/push_work_on_channel.vv b/vlib/v/tests/inout/push_work_on_channel.vv index 9ef86fc75a..90dedbf0a8 100644 --- a/vlib/v/tests/inout/push_work_on_channel.vv +++ b/vlib/v/tests/inout/push_work_on_channel.vv @@ -22,7 +22,7 @@ fn main() { _ := <-work_started ch.close() - println('> main ch.close called') + // println('> main ch.close called') // the position of this is not deterministic task.wait() println('> main task was finished')