Skip to content

Commit 1974652

Browse files
committed
Fix test_CCDBHelpers: empty remapping is not an error
1 parent cf255ca commit 1974652

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/test/test_CCDBHelpers.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ using namespace o2::framework;
2121
BOOST_AUTO_TEST_CASE(TestSorting)
2222
{
2323
auto result = CCDBHelpers::parseRemappings("");
24-
BOOST_CHECK_EQUAL(result.error, "Empty string provided");
24+
BOOST_CHECK_EQUAL(result.error, ""); // not an error
2525

2626
result = CCDBHelpers::parseRemappings("https");
2727
BOOST_CHECK_EQUAL(result.error, "URL should start with either / or http:// / https://");

0 commit comments

Comments
 (0)