diff options
author | Johan Klokkhammer Helsing <johan.helsing@qt.io> | 2019-12-05 13:41:32 +0100 |
---|---|---|
committer | Johan Klokkhammer Helsing <johan.helsing@qt.io> | 2019-12-05 15:00:25 +0100 |
commit | d0137d3c48882a6f52de9fab93c3b02c0cff8282 (patch) | |
tree | a45a37b8951eae1b0cfe956d7a75c4fb42f16a45 /tests/auto/client | |
parent | 6e9d6f166dec65e91b4dbf73ccb60170e0a56dc8 (diff) | |
download | qtwayland-d0137d3c48882a6f52de9fab93c3b02c0cff8282.tar.gz |
Client tests: Fix missing frame event
Change-Id: I8bda37560ff8b3c97699831427b0a148f8a5970c
Reviewed-by: David Edmundson <davidedmundson@kde.org>
Diffstat (limited to 'tests/auto/client')
-rw-r--r-- | tests/auto/client/xdgshell/tst_xdgshell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/client/xdgshell/tst_xdgshell.cpp b/tests/auto/client/xdgshell/tst_xdgshell.cpp index ac5c2498..d1c2882a 100644 --- a/tests/auto/client/xdgshell/tst_xdgshell.cpp +++ b/tests/auto/client/xdgshell/tst_xdgshell.cpp @@ -219,8 +219,8 @@ void tst_xdgshell::popup() p->sendFrame(c); uint serial = p->sendButton(client(), BTN_LEFT, Pointer::button_state_pressed); p->sendButton(c, BTN_LEFT, Pointer::button_state_released); - return serial; p->sendFrame(c); + return serial; }); QTRY_VERIFY(window.m_popup); |