~alan-griffiths/mir/fix-1663197

« back to all changes in this revision

Viewing changes to tests/acceptance-tests/test_client_input.cpp

  • Committer: Tarmac
  • Author(s): Daniel van Vugt
  • Date: 2017-02-06 08:06:46 UTC
  • mfrom: (4012.1.2 fix-1662044)
  • Revision ID: tarmac-20170206080646-014re6tgdofbkvp9
Drop a recently introduced 10 second wait to 1 second. (LP: #1662044)

Since it's only waiting to verify the absence of changes, a lower
timeout does not increase the risk of failure. Fixes: https://bugs.launchpad.net/bugs/1662044.

Approved by Chris Halse Rogers, mir-ci-bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1151
1151
    mir_connection_apply_session_input_config(unfocused_client.connection, config);
1152
1152
    mir_input_config_release(config);
1153
1153
 
1154
 
    EXPECT_FALSE(expect_no_changes.wait_for(10s));
 
1154
    EXPECT_FALSE(expect_no_changes.wait_for(1s));
1155
1155
    mir_connection_set_input_config_change_callback(unfocused_client.connection, [](MirConnection*, void*){}, nullptr);
1156
1156
}
1157
1157