fix(compiler/test): Fixing naming in end_to_end tests

This commit is contained in:
Quentin Bourgerie
2023-04-05 18:55:59 +02:00
parent 3ada182c22
commit edbdcdd7ec

View File

@@ -147,7 +147,7 @@ std::string getTestName(EndToEndDesc desc,
int testNum) {
std::ostringstream os;
os << getOptionsName(options) << "." << desc.description << "." << testNum;
return os.str().substr(1);
return os.str();
}
void registerEndToEnd(std::string suiteName, std::string testName,