diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2012-03-21 18:27:15 +0100 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2012-05-08 09:14:09 +0200 |
commit | 9e0570e737aafaa877255e6aec2d59ae2f6d8374 (patch) | |
tree | d7bbdb9210ad6c84b6d073c1efc13a49c0d2438a /test | |
parent | c36bdea1601cc72d778074bde944847318b1701f (diff) |
D-Bus testing: fixed session startup
The script incorrectly checked for "queuing" status instead
of "queueing" and thus did not wait correctly when the
session really took a while to become active.
Diffstat (limited to 'test')
-rwxr-xr-x | test/test-dbus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-dbus.py b/test/test-dbus.py index aa1f50ba..3132fea9 100755 --- a/test/test-dbus.py +++ b/test/test-dbus.py @@ -649,7 +649,7 @@ class DBusUtil(Timeout): sessionpath), 'org.syncevolution.Session') status, error, sources = session.GetStatus(utf8_strings=True) - if wait and status == "queuing": + if wait and status == "queueing": # wait for signal loop.run() self.assertEqual(DBusUtil.quit_events, ["session " + sessionpath + " ready"]) |