Skip to content

Commit 06942d4

Browse files
committed
Remove extra _ in group name
1 parent 6052a36 commit 06942d4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

qt/scientific_interfaces/Indirect/Reduction/ISISEnergyTransferModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ std::string IETModel::getOutputGroupName(InstrumentData const &instData, std::st
117117
std::string analyser = instData.getAnalyser();
118118
std::string reflection = instData.getReflection();
119119

120-
return instrument + inputText + "_" + analyser + "_" + reflection + "_Reduced";
120+
return instrument + inputText + "_" + analyser + reflection + "_Reduced";
121121
}
122122

123123
MantidQt::API::IConfiguredAlgorithm_sptr IETModel::energyTransferAlgorithm(InstrumentData const &instData,

qt/scientific_interfaces/Indirect/test/Reduction/MockObjects.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@ class MockIETView : public IIETView {
124124
MOCK_METHOD1(setInstrumentSpecDefault, void(std::map<std::string, bool> &specMap));
125125

126126
MOCK_METHOD1(showMessageBox, void(std::string const &message));
127-
128-
MOCK_CONST_METHOD0(hideOutputNameBox, void());
129127
};
130128

131129
GNU_DIAG_ON_SUGGEST_OVERRIDE

0 commit comments

Comments
 (0)