summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-11-27 16:28:20 +0100
committerDave Davenport <qball@gmpclient.org>2016-11-27 16:28:20 +0100
commit45fd97d8427c2c89e2cf9dd4a868c3f956fbf35b (patch)
tree215252c258104636e7992a820f86f4067b6e8071 /test
parent862c04ef61e86e2c77e292f1aa3aaf56b3d68d76 (diff)
Fix test box widget..
Diffstat (limited to 'test')
-rw-r--r--test/box-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/box-test.c b/test/box-test.c
index d45f468c..b9283d44 100644
--- a/test/box-test.c
+++ b/test/box-test.c
@@ -88,7 +88,7 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
widget_enable ( WIDGET ( wid5 ) );
widget_resize ( WIDGET ( wid5 ), 20, 20 );
box_add ( b , WIDGET( wid5 ), TRUE, TRUE );
- TASSERTE ( wid5->x, 200-20-20-6);
+ TASSERTE ( wid5->x, 128);
widget_free ( WIDGET ( b ) );
}
{
@@ -148,7 +148,7 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
widget_enable ( WIDGET ( wid5 ) );
widget_resize ( WIDGET ( wid5 ), 20, 20 );
box_add ( b , WIDGET( wid5 ), TRUE, TRUE );
- TASSERTE ( wid5->y, 200-20-20-6);
+ TASSERTE ( wid5->y, 128);
widget_free ( WIDGET ( b ) );
}
{