diff options
author | Ed S <ejsanders@gmail.com> | 2019-03-12 18:15:54 +0000 |
---|---|---|
committer | Alex Lam S.L <alexlamsl@gmail.com> | 2019-03-13 02:15:54 +0800 |
commit | b1c06640665fb4f8bcfe26c8f37e5d14520e5e4c (patch) | |
tree | 6e6aab8e6988e5c2b7bd9d7ba1e93d87273ff1ab /test | |
parent | ea999b0e9261a9035af5c1f35ffe68bb83f29719 (diff) | |
download | tracifyjs-b1c06640665fb4f8bcfe26c8f37e5d14520e5e4c.tar.gz tracifyjs-b1c06640665fb4f8bcfe26c8f37e5d14520e5e4c.zip |
Fix typo in warning (#3324)
protoype -> prototype
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/issue-2719.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/compress/issue-2719.js b/test/compress/issue-2719.js index c8b0918e..dc37f404 100644 --- a/test/compress/issue-2719.js +++ b/test/compress/issue-2719.js @@ -26,7 +26,7 @@ warn: { }().length); } expect_warnings: [ - "WARN: Function.protoype.caller not supported [test/compress/issue-2719.js:5,19]", - "WARN: Function.protoype.arguments not supported [test/compress/issue-2719.js:5,19]", + "WARN: Function.prototype.caller not supported [test/compress/issue-2719.js:5,19]", + "WARN: Function.prototype.arguments not supported [test/compress/issue-2719.js:5,19]", ] } |