testsuite: Remove a test that isn't valid with csd

With csd, the allocation of the window will be larger than the
default size, since it includes borders and decorations. Just
remove this check.
This commit is contained in:
Matthias Clasen 2016-03-05 13:47:41 -05:00
parent b2e6ad640d
commit d69100547c

View File

@ -88,9 +88,6 @@ test_default_size (void)
g_assert_cmpint (w, ==, 300);
g_assert_cmpint (h, ==, 300);
g_assert_cmpint (gtk_widget_get_allocated_width (window), ==, 300);
g_assert_cmpint (gtk_widget_get_allocated_height (window), ==, 300);
g_assert_cmpint (gtk_widget_get_allocated_width (box), ==, 300);
g_assert_cmpint (gtk_widget_get_allocated_height (box), ==, 300);