diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-25 22:30:00 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-25 22:30:00 -0500 |
commit | 39f9bb1050d707ba1edd3f4956eb69b577a91ddd (patch) | |
tree | e98bc674e6082ca620e26d039238f34e7fac3473 /test | |
parent | fa385aafa4cf1b0101b6bc0a08f38b8508666158 (diff) |
Remove hasOwn which is no longer necessary
Diffstat (limited to 'test')
-rw-r--r-- | test/test-database.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test-database.js b/test/test-database.js index c2317881..35f22523 100644 --- a/test/test-database.js +++ b/test/test-database.js @@ -90,7 +90,7 @@ class XMLHttpRequest { const {JsonSchema} = yomichanTest.requireScript('ext/bg/js/json-schema.js', ['JsonSchema']); const {dictFieldSplit, dictTagSanitize} = yomichanTest.requireScript('ext/bg/js/dictionary.js', ['dictFieldSplit', 'dictTagSanitize']); -const {stringReverse, hasOwn} = yomichanTest.requireScript('ext/mixed/js/core.js', ['stringReverse', 'hasOwn'], {chrome}); +const {stringReverse} = yomichanTest.requireScript('ext/mixed/js/core.js', ['stringReverse'], {chrome}); const {requestJson} = yomichanTest.requireScript('ext/bg/js/request.js', ['requestJson'], {XMLHttpRequest}); const databaseGlobals = { @@ -98,7 +98,6 @@ const databaseGlobals = { JsonSchema, requestJson, stringReverse, - hasOwn, dictFieldSplit, dictTagSanitize, indexedDB: global.indexedDB, |