Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
i582 committed Feb 16, 2025
1 parent 1356bc5 commit 55a302e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/e2e/func.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ describe("disassemble", () => {
slice begin_parse(cell c) asm "CTOS";
slice trim_prefix(slice where, slice prefix) asm "SDBEGINSX";
slice trim_prefix_quite(slice where, slice prefix) asm "SDBEGINSXQ";
slice trim_prefix_quiet(slice where, slice prefix) asm "SDBEGINSXQ";
() recv_internal() {
slice where = begin_cell().store_slice("hello world").end_cell().begin_parse();
slice prefix = begin_cell().store_slice("hello").end_cell().begin_parse();
slice result = trim_prefix(where, prefix);
slice result2 = trim_prefix_quite(where, prefix);
slice result2 = trim_prefix_quiet(where, prefix);
~impure_touch(result);
~impure_touch(result2);
}
Expand Down

0 comments on commit 55a302e

Please sign in to comment.