Fix DrawPoint() test

The result now matches non-GC wxDC, after 5ba7a1d1
This commit is contained in:
Paul Cornett 2017-11-05 09:35:43 -08:00
parent d36d251e8d
commit 74282d9aed

View File

@ -203,7 +203,7 @@ void GCDCBoundingBoxTestCase::DrawEllipticArc()
void GCDCBoundingBoxTestCase::DrawPoint()
{
m_gcdc->DrawPoint(20, 20);
AssertBox(20, 20, 1, 1);
AssertBox(20, 20, 0, 0);
}
void GCDCBoundingBoxTestCase::DrawLines()