Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
felipensp committed Nov 14, 2023
1 parent 827f3a8 commit 500eebc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vlib/v/fmt/tests/interface_declaration_comments_keep.vv
Original file line number Diff line number Diff line change
Expand Up @@ -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.
//
Expand Down

0 comments on commit 500eebc

Please sign in to comment.