Skip to content

Commit

Permalink
Fix LoadMD unit test
Browse files Browse the repository at this point in the history
Refs #11111
  • Loading branch information
martyngigg committed Mar 2, 2015
1 parent 3694713 commit f7e05a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Code/Mantid/Framework/MDEvents/src/MDBoxFlatTree.cpp
Expand Up @@ -449,8 +449,9 @@ void MDBoxFlatTree::loadExperimentInfos(
std::string groupName = "experiment" + Kernel::Strings::toString(*itr);
if (lazy) {
auto ei = boost::make_shared<API::FileBackedExperimentInfo>(
file, file->getPath() + "/" + groupName
);
file, file->getPath() + "/" + groupName);
// And add it to the mutliple experiment info.
mei->addExperimentInfo(ei);
}
else {
auto ei = boost::make_shared<API::ExperimentInfo>();
Expand Down

0 comments on commit f7e05a6

Please sign in to comment.