aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing.odin
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/testing.odin')
-rw-r--r--src/testing/testing.odin2
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)
}
}
}