From 92bd55ded62ca8e5c400264847e044497ff296a8 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Fri, 24 Dec 2021 17:47:48 +0900 Subject: [PATCH] tests: fix typo in common.v (#12952) --- cmd/tools/modules/testing/common.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/modules/testing/common.v b/cmd/tools/modules/testing/common.v index 405349a288..a2e9cb533f 100644 --- a/cmd/tools/modules/testing/common.v +++ b/cmd/tools/modules/testing/common.v @@ -263,7 +263,7 @@ pub fn (mut ts TestSession) test() { ts.append_message(.sentinel, '') // send the sentinel _ := <-ts.nprint_ended // wait for the stop of the printing thread eprintln(term.h_divider('-')) - // cleanup generated .tmp.c files after successfull tests: + // cleanup generated .tmp.c files after successful tests: if ts.benchmark.nfail == 0 { if ts.rm_binaries { os.rmdir_all(ts.vtmp_dir) or {}