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

Side by Side Diff: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdaterTest.java

Issue 29533564: Issue 5556 - Update to use libadblockplus revision hg:566f64c8a2a8 (Closed) Base URL: github.com:abby-sergz/libadblockplus-android.git
Patch Set: Created Sept. 1, 2017, 9:38 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
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
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, mockWebRequest,
45 jsEngine.setDefaultFileSystem(getContext().getFilesDir().getAbsolutePath()); 45 getContext().getFilesDir().getAbsolutePath());
46 46
47 filterEngine = new FilterEngine(jsEngine); 47 filterEngine = new FilterEngine(jsEngine);
48 } 48 }
49 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld