Fix up the format of the tests a wee bit.

master
Tait Hoyem 5 years ago
parent 2575a55b2f
commit a6d8ed5e8c

@ -69,7 +69,7 @@ namespace Catch {
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;
return ss.str();

Loading…
Cancel
Save