Fix up the format of the tests a wee bit.

master
Tait Hoyem 5 years ago
parent 2575a55b2f
commit a6d8ed5e8c

@ -66,12 +66,12 @@ namespace Catch {
}
ss << files << std::endl;
ss << "}" << std::endl;
ss << "," << std::endl;
ss << "{ ";
ss << "," << std::endl;
ss << "{ ";
for (int pi = 0; pi < poss.size(); ++pi){
pi == poss.size()-1 ? ss << poss[pi] << "(" << POSITION_STRING[poss[pi]] << ") }" << std::endl : ss << poss[pi] << "(" << POSITION_STRING[poss[pi]] << "), ";
pi == poss.size()-1 ? ss << poss[pi] << "(" << POSITION_STRING[poss[pi]] << ")" : ss << poss[pi] << "(" << POSITION_STRING[poss[pi]] << "), ";
}
ss << "}" << std::endl;
ss << " }" << std::endl;
return ss.str();
}
};

Loading…
Cancel
Save