Skip to content

Commit f2fd020

Browse files
authored
[O2-5887] Avoid empty URLs (#2608)
1 parent eee1fee commit f2fd020

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Framework/test/testCheck.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ TEST_CASE("test_check_activity")
149149
"TST",
150150
"",
151151
{},
152-
"",
153-
{ { "implementation", "CCDB" }, { "host", "" } },
152+
"something",
153+
{ { "implementation", "CCDB" }, { "host", "something" } },
154154
"test",
155155
UpdatePolicyType::OnAny,
156156
{},

Framework/test/testTaskInterface.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ TEST_CASE("test_task_factory")
172172
"TST",
173173
"",
174174
{},
175-
"",
175+
"something",
176176
{},
177177
"SkeletonTaskRunner",
178178
"skeletonTask",

Modules/Example/test/testFactory.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +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.ccdbUrl = "something";
3334
auto manager = make_shared<ObjectsManager>(config.taskName, config.className, config.detectorName, 0);
3435
try {
3536
gSystem->AddDynamicPath("lib:../../lib:../../../lib:.:"); // add local paths for the test

0 commit comments

Comments
 (0)