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

Unified Diff: test/domainRestrictions.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/_common.js ('k') | test/elemHide.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/domainRestrictions.js
diff --git a/test/domainRestrictions.js b/test/domainRestrictions.js
index 12bc0154629c56992e4d938b9293a7bac86eb718..182e6ef144e9b711941177d94f36b45d2d0f338b 100644
--- a/test/domainRestrictions.js
+++ b/test/domainRestrictions.js
@@ -17,7 +17,7 @@
"use strict";
-let {createSandbox} = require("./_common");
+const {createSandbox} = require("./_common");
let Filter = null;
@@ -54,7 +54,7 @@ exports.testUnrestrictedBlockingFilters = function(test)
exports.testUnrestrictedHidingRules = function(test)
{
- testActive(test,"#foo", null, true, false);
+ testActive(test, "#foo", null, true, false);
testActive(test, "#foo", "com", true, false);
testActive(test, "#foo", "example.com", true, false);
testActive(test, "#foo", "example.com.", true, false);
« no previous file with comments | « test/_common.js ('k') | test/elemHide.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld