diff options
author | louiz’ <louiz@louiz.org> | 2020-03-02 23:19:33 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2020-03-02 23:20:47 +0100 |
commit | 3584979cc28d083c2bba70da97623340d232ef6a (patch) | |
tree | 494b91aa8f4a7ca6c639b79e15ce5eb7e9756527 /tests | |
parent | 76b81cec5501e80039c02eaa761817a53de1c23b (diff) | |
download | biboumi-3584979cc28d083c2bba70da97623340d232ef6a.tar.gz biboumi-3584979cc28d083c2bba70da97623340d232ef6a.tar.bz2 biboumi-3584979cc28d083c2bba70da97623340d232ef6a.tar.xz biboumi-3584979cc28d083c2bba70da97623340d232ef6a.zip |
e2e: fix the timeout code for expect_unordered
Diffstat (limited to 'tests')
-rw-r--r-- | tests/end_to_end/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/end_to_end/__main__.py b/tests/end_to_end/__main__.py index cef554e..dcf154d 100644 --- a/tests/end_to_end/__main__.py +++ b/tests/end_to_end/__main__.py @@ -100,7 +100,7 @@ class XMPPComponent(slixmpp.BaseXMPP): def on_timeout(self, xpaths): error_msg = "Timeout while waiting for a stanza that would match the expected xpath(s):" for xpath in xpaths: - error_msg += "\n" + xpath + error_msg += "\n" + str(xpath) self.error(error_msg) self.run_scenario() |