Skip to content

Commit 411620d

Browse files
author
Denis Krivak
committed
Fix tests output message.
1 parent a8224c1 commit 411620d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

godot_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ func assertEqualContent(t *testing.T, expected, content string) {
443443
exp := strings.TrimRight(expectedLines[i], "\r")
444444
if result != exp {
445445
t.Fatalf("Wrong line %d\n expected: '%s'\n got: '%s'",
446-
i, exp, result)
446+
i+1, exp, result)
447447
}
448448
}
449449
}

0 commit comments

Comments
 (0)