Skip to content

Commit e6e28f1

Browse files
committed
ci: fix v -cstrict cmd/tools/vcover/cover_test.v
1 parent e193679 commit e6e28f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vlib/v/preludes/test_runner_normal.v

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ fn (mut runner NormalTestRunner) free() {
5353
}
5454

5555
fn normalise_fname(name string) string {
56-
t1 := name.replace('__', '.')
57-
t2 := t1.replace('main.', '')
58-
t3 := 'fn ' + t2
59-
return t3
56+
nt1 := name.replace('__', '.')
57+
nt2 := nt1.replace('main.', '')
58+
nt3 := 'fn ' + nt2
59+
return nt3
6060
}
6161

6262
fn (mut runner NormalTestRunner) start(ntests int) {

0 commit comments

Comments
 (0)