From dc1c26a2c299e96f31f36b3777e7075f6d6ac6bc Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 14 Jun 2021 10:20:58 +0300 Subject: [PATCH] ci: add back vlib/net/http/cookie_test.v as an exception in vtest-cleancode.v --- cmd/tools/vtest-cleancode.v | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/tools/vtest-cleancode.v b/cmd/tools/vtest-cleancode.v index 1770b8dc66..4387bf40ba 100644 --- a/cmd/tools/vtest-cleancode.v +++ b/cmd/tools/vtest-cleancode.v @@ -44,6 +44,7 @@ const ( ] vfmt_known_failing_exceptions = arrays.merge(verify_known_failing_exceptions, [ 'vlib/strconv/' /* prevent conflicts, till the new pure V string interpolation is merged */, + 'vlib/net/http/cookie_test.v' /* a very weird bug where `,` keeps on being added in comments */, 'vlib/term/ui/input.v' /* comment after a struct embed is removed */, 'vlib/regex/regex_test.v' /* contains meaningfull formatting of the test case data */, 'vlib/readline/readline_test.v' /* vfmt eats `{ Readline }` from `import readline { Readline }` */,