Skip to content

Commit

Permalink
test(service): update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
g-plane committed Dec 24, 2024
1 parent 323836f commit 78bdf4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/service/tests/diagnostics/typeck.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ fn block_type_in_stack() {
let source = "
(module
(func (param i32 i32) (result i32)
(local.get 0)
(block (result i32)
(block (result i32 i32)
(local.get 0)
(local.get 1))
i32.add))
";
Expand All @@ -323,8 +323,8 @@ fn block_type_folded() {
(module
(func (param i32 i32) (result i32)
(i32.add
(local.get 0)
(block (result i32)
(block (result i32 i32)
(local.get 0)
(local.get 1)))))
";
let mut service = LanguageService::default();
Expand Down

0 comments on commit 78bdf4a

Please sign in to comment.