| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 { | 34 { |
| 35 super.setUp(); | 35 super.setUp(); |
| 36 | 36 |
| 37 AppInfo appInfo = AppInfo | 37 AppInfo appInfo = AppInfo |
| 38 .builder() | 38 .builder() |
| 39 .setName("test") | 39 .setName("test") |
| 40 .setVersion("1.0.1") | 40 .setVersion("1.0.1") |
| 41 .build(); | 41 .build(); |
| 42 | 42 |
| 43 mockWebRequest = new MockWebRequest(); | 43 mockWebRequest = new MockWebRequest(); |
| 44 JsEngine jsEngine = new JsEngine(appInfo, mockWebRequest, | 44 JsEngine jsEngine = new JsEngine(appInfo, null, mockWebRequest, |
| 45 getContext().getFilesDir().getAbsolutePath()); | 45 getContext().getFilesDir().getAbsolutePath()); |
| 46 | 46 |
| 47 filterEngine = new FilterEngine(jsEngine); | 47 filterEngine = new FilterEngine(jsEngine); |
| 48 } | 48 } |
| 49 } | 49 } |
| OLD | NEW |