From 2526aca75fee4d63b13f3aa249810916b6290b36 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 6 Oct 2021 00:33:01 +0300 Subject: [PATCH] tests: fix typo in coutput_test.v (thanks Jalon) --- vlib/v/gen/c/coutput_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/gen/c/coutput_test.v b/vlib/v/gen/c/coutput_test.v index b4c8c351b6..4b31e24707 100644 --- a/vlib/v/gen/c/coutput_test.v +++ b/vlib/v/gen/c/coutput_test.v @@ -98,7 +98,7 @@ fn test_c_must_have_files() ? { mut total_errors := 0 for must_have_path in paths { basename, path, relpath, must_have_relpath := target2paths(must_have_path, '.c.must_have') - print(term.colorize(term.magenta, 'v -o - $relpath') + ' matches all line paterns in ' + + print(term.colorize(term.magenta, 'v -o - $relpath') + ' matches all line patterns in ' + term.colorize(term.magenta, must_have_relpath) + ' ') file_options := get_file_options(path) compilation := os.execute('$vexe -o - $file_options.vflags $path')