diff --git a/test/intl402/NumberFormat/prototype/format/value-tonumber.js b/test/intl402/NumberFormat/prototype/format/value-tonumber.js
index d3dd8e0003b46380ba42f9d827761a919ab1e1f7..710955a684a06cd582fc3ff30b193add6992f618 100644
--- a/test/intl402/NumberFormat/prototype/format/value-tonumber.js
+++ b/test/intl402/NumberFormat/prototype/format/value-tonumber.js
@@ -25,11 +25,16 @@ const toNumberResults = [
 const nf = new Intl.NumberFormat();
 
 toNumberResults.forEach(pair => {
-  const value = pair[0];
-  const result = pair[1];
+  const [value, result] = pair;
   assert.sameValue(nf.format(value), nf.format(result));
 });
 
+let count = 0;
+const dummy = {};
+dummy[Symbol.toPrimitive] = hint => (hint === 'number' ? ++count : NaN);
+assert.sameValue(nf.format(dummy), nf.format(count));
+assert.sameValue(count, 1);
+
 assert.throws(
   TypeError,
   () => nf.format(Symbol()),