Skip to content

Commit

Permalink
Fix buggy error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jessealama authored and rwaldron committed Feb 28, 2022
1 parent 918cefc commit ecd24fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/intl402/Temporal/Instant/formatrange-fails.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 + ')'
);
}
});
Expand Down

0 comments on commit ecd24fa

Please sign in to comment.