Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/filterListener.js

Issue 29892596: Issue 6992 - Remove keyword-by-filter map (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Implement faster version of isSlowFilter Created Sept. 28, 2018, 9:22 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/matcher.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/filterListener.js
===================================================================
--- a/test/filterListener.js
+++ b/test/filterListener.js
@@ -61,22 +61,21 @@
function checkKnownFilters(test, text, expected)
{
let result = {};
for (let type of ["blacklist", "whitelist"])
{
let matcher = defaultMatcher[type];
let filters = [];
- for (let [keyword, list] of matcher.filterByKeyword)
+ for (let [keyword, set] of matcher.filterByKeyword)
{
- for (let i = 0; i < list.length; i++)
+ for (let filter of set)
{
- let filter = list[i];
- test.equal(matcher.getKeywordForFilter(filter), keyword,
+ test.equal(matcher.findKeyword(filter), keyword,
"Keyword of filter " + filter.text);
filters.push(filter.text);
}
}
result[type] = filters;
}
let elemHide = sandboxedRequire("../lib/elemHide");
« no previous file with comments | « lib/matcher.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld