mobility: (fixes #955) use allowed symbols in test name

This commit is contained in:
Tommaso Pecorella
2023-09-19 22:14:16 +02:00
committed by Tommaso Pecorella
parent 0306cae347
commit bb61a17906

View File

@@ -190,8 +190,9 @@ RectangleClosestBorderTestCase::BuildNameString(double x,
{
std::ostringstream oss;
oss << "Rectangle closest border test : checking"
<< " (x,y) = (" << x << "," << y << ") closest border to the rectangle (" << rectangle
<< "). The expected side = " << side;
<< " (x,y) = (" << x << "," << y << ") closest border to the rectangle [(" << rectangle.xMin
<< ", " << rectangle.yMin << "), (" << rectangle.xMax << ", " << rectangle.yMax
<< ")]. The expected side = " << side;
return oss.str();
}