From 500eebc080a522dc1fe1fb1cf3fc3ca472a8a637 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Tue, 14 Nov 2023 08:51:03 -0300 Subject: [PATCH] fix fmt --- vlib/v/fmt/tests/interface_declaration_comments_keep.vv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vlib/v/fmt/tests/interface_declaration_comments_keep.vv b/vlib/v/fmt/tests/interface_declaration_comments_keep.vv index c74c3a66081cb0..16e99b0296b7df 100644 --- a/vlib/v/fmt/tests/interface_declaration_comments_keep.vv +++ b/vlib/v/fmt/tests/interface_declaration_comments_keep.vv @@ -32,11 +32,11 @@ interface Bar { interface TestsRunner { mut: - fn_passes u64 - fn_fails u64 + fn_passes u64 + fn_fails u64 assert_passes u64 - assert_fails u64 - test_fn_info &TestFnMetaInfo // filled in by generated code, before .fn_start() is called. + assert_fails u64 + test_fn_info &TestFnMetaInfo // filled in by generated code, before .fn_start() is called. start(ntests int) // called before all tests, you can initialise private data here. ntests is the number of test functions in the _test.v file. finish() // called after all tests are finished, you should free all the private data here. //