From 74282d9aed77a288e48cc1fb22908cf59349f836 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sun, 5 Nov 2017 09:35:43 -0800 Subject: [PATCH] Fix DrawPoint() test The result now matches non-GC wxDC, after 5ba7a1d1 --- tests/graphics/boundingbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/graphics/boundingbox.cpp b/tests/graphics/boundingbox.cpp index 01468ec841..1c316e3a80 100644 --- a/tests/graphics/boundingbox.cpp +++ b/tests/graphics/boundingbox.cpp @@ -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()