From 69bb0891c750ae87323307e258a166d082bfe746 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 19 Nov 2020 16:25:52 +0200 Subject: [PATCH] vfmt: fix ^A keep.vv test too --- vlib/v/fmt/tests/array_init_keep.vv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vlib/v/fmt/tests/array_init_keep.vv b/vlib/v/fmt/tests/array_init_keep.vv index a9c0baa8b2..b4fa793d54 100644 --- a/vlib/v/fmt/tests/array_init_keep.vv +++ b/vlib/v/fmt/tests/array_init_keep.vv @@ -1,9 +1,9 @@ fn main() { arr := [ - /* test 0 */ + /* test 0 */ 1, - /* test 1 */ + /* test 1 */ 2, - /* test 2 */ + /* test 2 */ ] }