Skip to content

Commit

Permalink
test: Fix after prettification changes
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Jun 14, 2019
1 parent 3ca0259 commit dd6fc3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/function/#/to-string-tokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
module.exports = function (t, a) {
a.deep(t.call(function (a, b) { return this[a] + this[b]; }), {
args: "a, b",
body: "\n\t\t\treturn this[a] + this[b];\n\t\t"
body: " return this[a] + this[b]; "
});
a.deep(t.call(function () {}), { args: "", body: "" });
// eslint-disable-next-line no-unused-vars
a.deep(t.call(function (raz) {}), { args: "raz", body: "" });
a.deep(t.call(function () { Object(); }), { args: "", body: "\n\t\t\tObject();\n\t\t" });
a.deep(t.call(function () { Object(); }), { args: "", body: " Object(); " });

try {
eval("(() => {})");
Expand Down

0 comments on commit dd6fc3f

Please sign in to comment.