diff options
Diffstat (limited to 'test/test_show_hide.c')
-rw-r--r-- | test/test_show_hide.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_show_hide.c b/test/test_show_hide.c index 2709daf..3b0acae 100644 --- a/test/test_show_hide.c +++ b/test/test_show_hide.c @@ -84,9 +84,9 @@ tick(PuglWorld* world) static void showHide(PuglTest* const test) { - // Show and hide window a couple of times - for (unsigned i = 0U; i < 2U; ++i) { - assert(!puglShow(test->view, PUGL_SHOW_RAISE)); + // Show and hide window a few times + for (unsigned i = 0U; i < 3U; ++i) { + assert(!puglShow(test->view, (PuglShowCommand)i)); while (test->state != EXPOSED) { tick(test->world); } |