Skip to content

Commit

Permalink
chore: fix structs e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gusarich committed Oct 24, 2024
1 parent 7bb1ef4 commit 4b9e402
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/e2e-emulated/contracts/structs.tact
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ fun destructuringTest8(): Int {
b: 42
};

let S {b} = s;
let S {b, ..} = s;

return b;
}
Expand Down Expand Up @@ -1119,7 +1119,7 @@ contract StructsTester {
b: 42
};

let S {b} = s;
let S {b, ..} = s;

return b;
}
Expand Down

0 comments on commit 4b9e402

Please sign in to comment.