Skip to content

Commit f30b9fe

Browse files
committed
activeCheckers
1 parent 565d97b commit f30b9fe

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/testcheckersreport.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ class TestCheckersReport : public TestFixture {
4040
a.checkers["abcdefghijklmnopqrstuvwxyz::abcdefghijklmnopqrstuvwxyz"] = "123";
4141
Settings s;
4242
s.addonInfos.emplace_back(a);
43-
CheckersReport r(s, {});
43+
std::set<std::string> activeCheckers;
44+
CheckersReport r(s, activeCheckers);
4445
const std::string report = r.getReport("");
4546
const auto pos = report.rfind("\n\n");
4647
ASSERT(pos != std::string::npos);

0 commit comments

Comments
 (0)