From 6f2a8a8b1a601ef4866a7fd7b66ab79c2a0f746b Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 6 Jul 2026 01:19:58 -0700 Subject: [PATCH] Tweak assertion failure text. --- test/GLOBALS.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/GLOBALS.mjs b/test/GLOBALS.mjs index 7f21fb9..6fad639 100644 --- a/test/GLOBALS.mjs +++ b/test/GLOBALS.mjs @@ -221,7 +221,7 @@ export class assert { throw new Error(`assert.equal() will not compare null or undefined`) } if (a !== b) { - throw new Error(`${a} not equal to ${b}`) + throw new Error(`expected ${a}; actual ${b}`) } } -- 2.52.0