aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-16 16:13:52 +0100
committerDavid Robillard <d@drobilla.net>2020-03-16 16:13:52 +0100
commitaee7dd61cce24125f07156ba2c726eb65b9c26d9 (patch)
tree53223ac04af2350b8735cbf995f8b9a47d4f626e /test
parent8f56441dcb1805a2ecec7c97ee547f241e1dcf11 (diff)
Make update test more tolerant
Diffstat (limited to 'test')
-rw-r--r--test/test_update.c2
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);
}