aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2022-01-15 01:05:23 +0100
committerDaniel Gavin <danielgavin5@hotmail.com>2022-01-15 01:05:23 +0100
commitf3bfad6da8932b2d5c6a9cba430701b0a67e422c (patch)
treea7b0c3b8941c99b0081ec9f57fb670f8c79685a6 /tests
parentbd3f707d8e0a717df49b7bf702a5b98d214b0381 (diff)
refractor + more tests
Diffstat (limited to 'tests')
-rw-r--r--tests/hover_test.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin
index 27b58e8..c710fb7 100644
--- a/tests/hover_test.odin
+++ b/tests/hover_test.odin
@@ -96,12 +96,12 @@ ast_hover_procedure_package_parameter :: proc(t: ^testing.T) {
source := test.Source {
main = `package test
import "my_package"
- main :: proc(cool: my_package.My_Stru*ct) {
+ main :: proc(cool: my_packa*ge.My_Struct) {
}
`,
packages = packages[:],
};
- //test.expect_hover(t, &source, "test.cool: My_Struct");
+ test.expect_hover(t, &source, "my_package: package");
}