diff options
Diffstat (limited to 'test/utils')
-rw-r--r-- | test/utils/rectangle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils/rectangle.cpp b/test/utils/rectangle.cpp index 0cfbece2..343d442f 100644 --- a/test/utils/rectangle.cpp +++ b/test/utils/rectangle.cpp @@ -54,8 +54,8 @@ namespace usdx int coords[] = { 100, 150, 200, 250 }; Rectangle<int> rect(coords); - CPPUNIT_ASSERT(rect.get_x() == 100); - CPPUNIT_ASSERT(rect.get_y() == 150); + CPPUNIT_ASSERT(rect.get_left() == 100); + CPPUNIT_ASSERT(rect.get_top() == 150); CPPUNIT_ASSERT(rect.get_width() == 200); CPPUNIT_ASSERT(rect.get_height() == 250); } |