From 384aaa75affae6fdceca2811ddd9a0b57d842e2d Mon Sep 17 00:00:00 2001 From: Damian Tarnawski Date: Fri, 4 Jul 2025 21:08:19 +0200 Subject: Support inlay hints with named params --- src/testing/testing.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/testing/testing.odin') 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) } } } -- cgit v1.2.3