Skip to content

Commit 12015c9

Browse files
committed
fix escape test
1 parent 8f0b4f2 commit 12015c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit-global/es.escape.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ QUnit.test('escape', assert => {
1111
assert.same(escape(undefined), 'undefined');
1212

1313
if (typeof Symbol == 'function' && !Symbol.sham) {
14-
assert.throws(() => unescape(Symbol('escape test')), 'throws on symbol argument');
14+
assert.throws(() => escape(Symbol('escape test')), 'throws on symbol argument');
1515
}
1616
});

0 commit comments

Comments
 (0)