Skip to content

Commit 72fb5a8

Browse files
author
James Halliday
committed
fix whitespace
1 parent 0993558 commit 72fb5a8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

test/quote.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ test('quote', function (t) {
1111
quote([ '$', '`', '\'' ]),
1212
'\\$ \\` "\'"'
1313
);
14-
t.equal(quote([]), '');
15-
t.equal(quote(["a\nb"]), "'a\nb'");
16-
t.equal(quote([' #(){}*|][!']), "' #(){}*|][!'");
17-
t.equal(quote(["'#(){}*|][!"]), '"\'#(){}*|][\\!"');
18-
t.equal(quote(["X#(){}*|][!"]), "X\\#\\(\\)\\{\\}\\*\\|\\]\\[\\!");
19-
t.equal(quote(["a\n#\nb"]), "'a\n#\nb'");
20-
t.equal(quote(['><;{}']), '\\>\\<\\;\\{\\}');
21-
t.equal(quote([ 'a', 1, true, false ]), 'a 1 true false');
22-
t.equal(quote([ 'a', 1, null, undefined ]), 'a 1 null undefined');
23-
t.end();
14+
t.equal(quote([]), '');
15+
t.equal(quote(["a\nb"]), "'a\nb'");
16+
t.equal(quote([' #(){}*|][!']), "' #(){}*|][!'");
17+
t.equal(quote(["'#(){}*|][!"]), '"\'#(){}*|][\\!"');
18+
t.equal(quote(["X#(){}*|][!"]), "X\\#\\(\\)\\{\\}\\*\\|\\]\\[\\!");
19+
t.equal(quote(["a\n#\nb"]), "'a\n#\nb'");
20+
t.equal(quote(['><;{}']), '\\>\\<\\;\\{\\}');
21+
t.equal(quote([ 'a', 1, true, false ]), 'a 1 true false');
22+
t.equal(quote([ 'a', 1, null, undefined ]), 'a 1 null undefined');
23+
t.end();
2424
});
2525

2626
test('quote ops', function (t) {

0 commit comments

Comments
 (0)