Skip to content

Commit 4bc18e9

Browse files
committed
format
1 parent 7b442b4 commit 4bc18e9

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Framework/test/testUserCodeInterface.cxx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,10 @@ BOOST_AUTO_TEST_CASE(test_invoke_all_methods)
9292
customParameters["test"] = "asdf";
9393
UserCodeConfig config;
9494
config.customParameters = customParameters;
95-
config.repository = {{"host", "ccdb-test.cern.ch:8080"}, {"implementation", "CCDB"}};
95+
config.repository = { { "host", "ccdb-test.cern.ch:8080" }, { "implementation", "CCDB" } };
9696
testInterface.setConfig(config);
9797
BOOST_CHECK_EQUAL(testInterface.configured, true);
9898
BOOST_CHECK_EQUAL(testInterface.get("test"), "asdf");
99-
100-
10199
}
102100
} /* namespace test */
103101
} /* namespace o2::quality_control */

Modules/Common/test/testMeanIsAbove.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ BOOST_AUTO_TEST_CASE(test_checks)
4545
customParameters["meanThreshold"] = "1.0";
4646
UserCodeConfig config;
4747
config.customParameters = customParameters;
48-
config.repository = {{"host", "ccdb-test.cern.ch:8080"}, {"implementation", "CCDB"}};
48+
config.repository = { { "host", "ccdb-test.cern.ch:8080" }, { "implementation", "CCDB" } };
4949
check.setConfig(config);
5050
Quality quality = check.check(&moMap);
5151
BOOST_CHECK_EQUAL(quality, Quality::Bad);

Modules/Example/test/testFactory.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ BOOST_AUTO_TEST_CASE(Task_Factory)
3030
config.moduleName = "QcCommon";
3131
config.className = "o2::quality_control_modules::example::ExampleTask";
3232
config.detectorName = "DAQ";
33-
config.repository = {{"host", "ccdb-test.cern.ch:8080"}, {"implementation", "CCDB"}};
33+
config.repository = { { "host", "ccdb-test.cern.ch:8080" }, { "implementation", "CCDB" } };
3434
auto manager = make_shared<ObjectsManager>(config.taskName, config.className, config.detectorName, config.consulUrl, 0, true);
3535
try {
3636
gSystem->AddDynamicPath("lib:../../lib:../../../lib:.:"); // add local paths for the test

0 commit comments

Comments
 (0)