diff options
Diffstat (limited to 'tests/hover_test.odin')
| -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 09f4bb9..8a41efc 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -3972,11 +3972,11 @@ ast_hover_struct_tags :: proc(t: ^testing.T) { ast_hover_struct_tags_packed :: proc(t: ^testing.T) { source := test.Source { main = `package test - Fo{*}o :: struct($T: typeid) #packed { + Fo{*}o :: struct($T: typeid) #packed #all_or_none { } `, } - test.expect_hover(t, &source, "test.Foo :: struct($T: typeid) #packed {}") + test.expect_hover(t, &source, "test.Foo :: struct($T: typeid) #packed #all_or_none {}") } @(test) |