From e8f079fea8cbc87e1e007c15954d90e1c8e34e15 Mon Sep 17 00:00:00 2001 From: Brad Lewis <22850972+BradLewis@users.noreply.github.com> Date: Wed, 29 Oct 2025 16:27:51 -0400 Subject: Add complete types for untyped expr as we now show full values for constants --- tests/hover_test.odin | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/hover_test.odin') diff --git a/tests/hover_test.odin b/tests/hover_test.odin index c3d6729..391ff60 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -4506,7 +4506,7 @@ ast_hover_float_binary_expr :: proc(t: ^testing.T) { } `, } - test.expect_hover(t, &source, "test.bar: float") + test.expect_hover(t, &source, "test.bar: f64") } @(test) @@ -5332,7 +5332,7 @@ ast_hover_complex_number_literal :: proc(t: ^testing.T) { `, } - test.expect_hover(t, &source, "test.foo: complex") + test.expect_hover(t, &source, "test.foo: complex128") } @(test) @@ -5345,7 +5345,7 @@ ast_hover_quaternion_literal :: proc(t: ^testing.T) { `, } - test.expect_hover(t, &source, "test.foo: quaternion") + test.expect_hover(t, &source, "test.foo: quaternion256") } /* -- cgit v1.2.3