 Issue 29356024:
  Issue 4223 - Adapt filter storage read/write tests to work in adblockpluscore repository  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore
    
  
    Issue 29356024:
  Issue 4223 - Adapt filter storage read/write tests to work in adblockpluscore repository  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore| Index: test/stub-modules/utils.js | 
| =================================================================== | 
| --- a/test/stub-modules/utils.js | 
| +++ b/test/stub-modules/utils.js | 
| @@ -2,10 +2,11 @@ let crypto = require("crypto"); | 
| exports.Utils = { | 
| generateChecksum: function(lines) | 
| { | 
| let buffer = new Buffer(lines.join("\n"), "utf-8"); | 
| let hash = crypto.createHash("md5"); | 
| hash.update(buffer); | 
| return hash.digest("base64").replace(/=+$/, ""); | 
| - } | 
| + }, | 
| + yield: () => undefined | 
| }; |