Skip to content

Commit

Permalink
Use default engine in adblock tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivanKaul committed Jun 20, 2023
1 parent 4be42f8 commit 002731b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/brave_shields/browser/test_filters_provider.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ namespace brave_shields {

TestFiltersProvider::TestFiltersProvider(const std::string& rules,
const std::string& resources)
: AdBlockFiltersProvider(false), rules_(rules), resources_(resources) {}
: AdBlockFiltersProvider(true), rules_(rules), resources_(resources) {}

TestFiltersProvider::TestFiltersProvider(const base::FilePath& dat_location,
const std::string& resources)
: AdBlockFiltersProvider(false), resources_(resources) {
: AdBlockFiltersProvider(true), resources_(resources) {
CHECK(!dat_location.empty());

dat_buffer_ = brave_component_updater::ReadDATFileData(dat_location);
Expand Down

0 comments on commit 002731b

Please sign in to comment.