From 5283f19443e09f8029581ef8192360eb39391a8d Mon Sep 17 00:00:00 2001 From: Kim Shrier Date: Mon, 27 Nov 2023 04:14:10 -0700 Subject: [PATCH] tests: remove `vlib/crypto/aes/const.v` from the skip list in vtest-fmt.v, since it now uses vfmt off/vfmt on markers --- cmd/tools/vtest-fmt.v | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmd/tools/vtest-fmt.v b/cmd/tools/vtest-fmt.v index e671d17c453af3..1bab81773928f2 100644 --- a/cmd/tools/vtest-fmt.v +++ b/cmd/tools/vtest-fmt.v @@ -4,9 +4,7 @@ import os import testing import v.util -const known_failing_exceptions = [ - 'vlib/crypto/aes/const.v', // const array wrapped in too many lines -] +const known_failing_exceptions = []string{} fn main() { args_string := os.args[1..].join(' ')