Skip to content

Commit 680a8d8

Browse files
authored
Fix test ccdb extra (#546)
1 parent 181fc82 commit 680a8d8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Framework/src/CcdbDatabase.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ void CcdbDatabase::loadDeprecatedStreamerInfos()
8181
string stringRepresentation = si->GetName() + si->GetClassVersion();
8282
if (alreadySeen.count(stringRepresentation) == 0) {
8383
alreadySeen.emplace(stringRepresentation);
84-
ILOG(Debug, Devel) << "importing streamer info version " << si->GetClassVersion() << " for '" << si->GetName() << ENDM;
84+
ILOG(Debug, Devel) << "importing streamer info version " << si->GetClassVersion() << " for '" << si->GetName() << "'" << ENDM;
8585
si->BuildCheck();
8686
}
8787
}

Framework/test/testCcdbDatabaseExtra.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,19 @@ BOOST_AUTO_TEST_CASE(ccdb_store)
111111
f.backend->storeQO(qo);
112112
}
113113

114-
BOOST_AUTO_TEST_CASE(ccdb_retrieve_json)
114+
BOOST_AUTO_TEST_CASE(ccdb_retrieve_json, *utf::depends_on("ccdb_store"))
115115
{
116116
test_fixture f;
117117

118-
string json = f.backend->retrieveMOJson("qc/TST/my/task", "asdf/asdf");
118+
string json = f.backend->retrieveMOJson("qc/TST/MO/my/task", "asdf/asdf");
119119
BOOST_CHECK(!json.empty());
120120
ILOG(Info, Support) << json << ENDM;
121121
std::stringstream ss;
122122
ss << json;
123123
boost::property_tree::ptree pt;
124124
boost::property_tree::read_json(ss, pt);
125125

126-
json = f.backend->retrieveQOJson("qc/checks/TST/checkName");
126+
json = f.backend->retrieveQOJson("qc/TST/QO/checkName");
127127
BOOST_CHECK(!json.empty());
128128
ILOG(Info, Support) << json << ENDM;
129129
std::stringstream ss2;

0 commit comments

Comments
 (0)