Skip to content

Commit

Permalink
test: update up to invalid value format change
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Mar 28, 2018
1 parent 3b61bc6 commit e568bc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/safe-to-string.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ module.exports = function (t, a) {
);
// eslint-disable-next-line symbol-description
if (typeof Symbol === "function") a(t(Symbol()), "Symbol()");
a(t(Object.create(null)), "<non-stringifiable value>");
a(t(Object.create(null)), "[Non-coercible (to string) value]");
};
2 changes: 1 addition & 1 deletion test/to-short-string-representation.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = function (t, a) {
);
// eslint-disable-next-line symbol-description
if (typeof Symbol === "function") a(t(Symbol()), "Symbol()");
a(t(Object.create(null)), "<non-stringifiable value>");
a(t(Object.create(null)), "[Non-coercible (to string) value]");
a(t(repeat.call("a", 300)), repeat.call("a", 99) + "…");
a(t("mar\ntoo\nfar"), "mar\\ntoo\\nfar");
};

0 comments on commit e568bc3

Please sign in to comment.