diff options
Diffstat (limited to 'tests/definition_test.odin')
| -rw-r--r-- | tests/definition_test.odin | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/definition_test.odin b/tests/definition_test.odin index 0f6c26f..6f4b982 100644 --- a/tests/definition_test.odin +++ b/tests/definition_test.odin @@ -1,11 +1,11 @@ package tests -import "core:testing" import "core:fmt" +import "core:testing" -import "shared:common" +import "src:common" -import test "shared:testing" +import test "src:testing" @(test) ast_goto_comp_lit_field :: proc(t: ^testing.T) { @@ -24,7 +24,7 @@ ast_goto_comp_lit_field :: proc(t: ^testing.T) { } location := common.Location { - range = { + range = { start = {line = 2, character = 12}, end = {line = 2, character = 13}, }, @@ -51,7 +51,7 @@ ast_goto_comp_lit_field_indexed :: proc(t: ^testing.T) { } location := common.Location { - range = { + range = { start = {line = 2, character = 12}, end = {line = 2, character = 13}, }, |