diff options
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/testing.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing.odin b/src/testing/testing.odin index 48e562b..78df00e 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -445,7 +445,7 @@ expect_inlay_hints :: proc(t: ^testing.T, src: ^Source, expected_hints: []server for i in 0 ..< min(len(expected_hints), len(hints)) { e, a := expected_hints[i], hints[i] if e != a { - log.errorf("[%d]: Expected inlay hint %v, but received %v", i, e, a) + log.errorf("[%d]: Expected inlay hint\n%v, but received\n%v", i, e, a) } } } |