From ecd24faa82961e0cc6c8420501b7e60193043e04 Mon Sep 17 00:00:00 2001 From: Jesse Alama Date: Tue, 22 Feb 2022 15:52:36 +0100 Subject: [PATCH] Fix buggy error message --- test/intl402/Temporal/Instant/formatrange-fails.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/intl402/Temporal/Instant/formatrange-fails.js b/test/intl402/Temporal/Instant/formatrange-fails.js index 948a73dde0..5dc53b743b 100644 --- a/test/intl402/Temporal/Instant/formatrange-fails.js +++ b/test/intl402/Temporal/Instant/formatrange-fails.js @@ -25,7 +25,7 @@ Object.entries(instances).forEach(([typeName, instance]) => { assert.throws( TypeError, () => { us.formatRange(instance, anotherInstance); }, - 'different types argument is bad (' + typeName + ' and ' + anotherTypeName + 'formatRange: bad arguments (' + typeName + ' and ' + anotherTypeName + ')' ); } });