diff options
author | David Robillard <d@drobilla.net> | 2020-03-16 16:13:52 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-16 16:13:52 +0100 |
commit | aee7dd61cce24125f07156ba2c726eb65b9c26d9 (patch) | |
tree | 53223ac04af2350b8735cbf995f8b9a47d4f626e /test | |
parent | 8f56441dcb1805a2ecec7c97ee547f241e1dcf11 (diff) | |
download | pugl-aee7dd61cce24125f07156ba2c726eb65b9c26d9.tar.gz pugl-aee7dd61cce24125f07156ba2c726eb65b9c26d9.tar.bz2 pugl-aee7dd61cce24125f07156ba2c726eb65b9c26d9.zip |
Make update test more tolerant
Diffstat (limited to 'test')
-rw-r--r-- | test/test_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_update.c b/test/test_update.c index a84a990..ada3da8 100644 --- a/test/test_update.c +++ b/test/test_update.c @@ -107,7 +107,7 @@ main(int argc, char** argv) assert(!puglShowWindow(app.view)); // Tick until an expose happens - while (app.state <= EXPOSED1) { + while (app.state < EXPOSED1) { assert(!puglUpdate(app.world, timeout)); assert(app.state != UPDATED); } |