From 4b14cb9b1fa35800c3ba265904bb0e22fec95ec8 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 3 Aug 2026 14:11:34 -0700 Subject: [PATCH] Fix assertion argument order. --- test/test.blocks.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.blocks.mjs b/test/test.blocks.mjs index 7f1e64f..ee905db 100644 --- a/test/test.blocks.mjs +++ b/test/test.blocks.mjs @@ -26,7 +26,7 @@ await Promise.all([ assert.nullish(block.work) const result = await assert.rejects(block.process(rpc)) assert.exists(block.work) - assert.equal(result.message, 'Block could not be processed') + assert.equal('Block could not be processed', result.message) }) }), -- 2.52.0