From 4b329cb89d587111d1167dcba3ed8a3b8a5a0032 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Mon, 20 Apr 2020 08:32:10 +0200 Subject: [PATCH] tests: fix a typo --- vlib/v/checker/tests/inout/void_fn_as_value.out | 2 +- vlib/v/gen/x64/tests/x64_test.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/v/checker/tests/inout/void_fn_as_value.out b/vlib/v/checker/tests/inout/void_fn_as_value.out index 88ff9daff4..0ad36288a4 100644 --- a/vlib/v/checker/tests/inout/void_fn_as_value.out +++ b/vlib/v/checker/tests/inout/void_fn_as_value.out @@ -1,4 +1,4 @@ -vlib/v/checker/tests/inout/void_fn_as_value.v:5:8: error: unknown funciton: x +vlib/v/checker/tests/inout/void_fn_as_value.v:5:8: error: unknown function: x 3| fn main() { 4| mut a := 'aa' 5| a += x('a','b') diff --git a/vlib/v/gen/x64/tests/x64_test.v b/vlib/v/gen/x64/tests/x64_test.v index 615c3c6c48..52836625c2 100644 --- a/vlib/v/gen/x64/tests/x64_test.v +++ b/vlib/v/gen/x64/tests/x64_test.v @@ -4,7 +4,7 @@ import term // TODO some logic copy pasted from valgrind_test.v and compiler_test.v, move to a module fn test_x64() { - if false && os.user_os() != 'linux' { + if os.user_os() != 'linux' { eprintln('x64 tests can only be run on Linux for now.') exit(0) }