diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-05 21:03:04 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-05 21:03:04 -0400 |
| commit | e81770b1ededb36770fd2393feb2d4450df445ef (patch) | |
| tree | e268b68ca29d65170e90781d39f745f1411e7887 /tests | |
| parent | 7ee64314fdd05984c65b1aa6df7ef3cd2dd435cd (diff) | |
Update implicit expression hover text to include package
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/hover_test.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin index dafc81c..028fbdb 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -390,7 +390,7 @@ ast_hover_enum_implicit_selector :: proc(t: ^testing.T) { ` } - test.expect_hover(t, &source, "Foo.Foo1") + test.expect_hover(t, &source, "test.Foo: .Foo1") } @(test) @@ -409,7 +409,7 @@ ast_hover_union_implicit_selector :: proc(t: ^testing.T) { ` } - test.expect_hover(t, &source, "Bar.Foo1") + test.expect_hover(t, &source, "test.Bar: .Foo1") } /* |