Skip to content

Commit b3031a2

Browse files
authored
chore: Update Noir to nightly-2026-05-05 (#22911)
Automated update of Noir submodule to latest nightly. **Current**: unknown **New**: nightly-2026-05-05 [View changes in noir-lang/noir](noir-lang/noir@20391fd...nightly-2026-05-05)
2 parents 420fd55 + d06c141 commit b3031a2

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

noir/noir-repo

Submodule noir-repo updated 53 files

yarn-project/end-to-end/src/e2e_avm_simulator.test.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ describe('e2e_avm_simulator', () => {
4545
describe('Assertions & error enriching', () => {
4646
/**
4747
* Expect an error like:
48-
* Assertion failed: This assertion should fail! 'not_true == true'
48+
* Assertion failed: This assertion should fail! 'assert(not_true == true, "This assertion should fail!")'
4949
* ...
50-
* at not_true == true (../../../../../../../home/aztec-dev/aztec-packages/noir-projects/noir-contracts/contracts/test/avm_test_contract/src/main.nr:223:16)
50+
* at assert(not_true == true, "This assertion should fail!") (../../../../../../../home/aztec-dev/aztec-packages/noir-projects/noir-contracts/contracts/test/avm_test_contract/src/main.nr:223:5)
5151
* at inner_helper_with_failed_assertion() (../../../../../../../home/aztec-dev/aztec-packages/noir-projects/noir-contracts/contracts/test/avm_test_contract/src/main.nr:228:9)
5252
* at quote { $self } (../std/meta/expr.nr:269:9)
5353
* at function.name();
@@ -60,7 +60,9 @@ describe('e2e_avm_simulator', () => {
6060
avmContract.methods.assertion_failure().simulate({ from: defaultAccountAddress }),
6161
).rejects.toThrow(
6262
expect.objectContaining({
63-
message: expect.stringMatching(/Assertion failed: This assertion should fail! 'not_true == true'/),
63+
message: expect.stringMatching(
64+
/Assertion failed: This assertion should fail! 'assert\(not_true == true, "This assertion should fail!"\)'/,
65+
),
6466
stack: expect.stringMatching(/at inner_helper_with_failed_assertion[\s\S]*at AvmTest\..*/),
6567
}),
6668
);

0 commit comments

Comments
 (0)