File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments