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

Unified Diff: test/filterStorage.js

Issue 29375915: Issue 4878 - Start using ESLint for adblockpluscore (Closed)
Patch Set: Removed unused imports Created March 15, 2017, 3:11 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 | « test/filterNotifier.js ('k') | test/filterStorage_readwrite.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/filterStorage.js
diff --git a/test/filterStorage.js b/test/filterStorage.js
index 466ae8dc7144c081b0788255fbc506921e08c97d..8ef7d8c90e2e1f9f98fe1271cc90b6a576015a21 100644
--- a/test/filterStorage.js
+++ b/test/filterStorage.js
@@ -17,7 +17,7 @@
"use strict";
-let {createSandbox} = require("./_common");
+const {createSandbox} = require("./_common");
let Filter = null;
let FilterNotifier = null;
@@ -57,7 +57,7 @@ function compareFiltersList(test, testMessage, list)
function compareFilterSubscriptions(test, testMessage, filter, list)
{
let result = filter.subscriptions.map(subscription => subscription.url);
- let expected = list.map(subscription => subscription.url);
+ let expected = list.map(subscription => subscription.url);
test.deepEqual(result, expected, testMessage);
}
« no previous file with comments | « test/filterNotifier.js ('k') | test/filterStorage_readwrite.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld