diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2025-07-04 21:08:19 +0200 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2025-07-04 21:08:19 +0200 |
| commit | 384aaa75affae6fdceca2811ddd9a0b57d842e2d (patch) | |
| tree | 9f2ef39f10eadd534ebd3e991f2eada317ef49f2 /src/testing | |
| parent | 90e3c54b0ed5880e35271ae5095e04abd0d636c9 (diff) | |
Support inlay hints with named params
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) } } } |