diff options
author | louiz’ <louiz@louiz.org> | 2016-10-12 20:59:13 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-10-12 21:00:05 +0200 |
commit | c3a7cd36279a123feec6d3665a4ba64b7ac1866b (patch) | |
tree | 3c703d5fa67574af991f67828dfd43e8ccd68499 | |
parent | 827a1eedf8936e90fe25fa851e7a13b1730f37f6 (diff) | |
download | biboumi-c3a7cd36279a123feec6d3665a4ba64b7ac1866b.tar.gz biboumi-c3a7cd36279a123feec6d3665a4ba64b7ac1866b.tar.bz2 biboumi-c3a7cd36279a123feec6d3665a4ba64b7ac1866b.tar.xz biboumi-c3a7cd36279a123feec6d3665a4ba64b7ac1866b.zip |
e2e: the port to use should be an int, not a string
-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 a104ded..1218c89 100644 --- a/tests/end_to_end/__main__.py +++ b/tests/end_to_end/__main__.py @@ -101,7 +101,7 @@ class XMPPComponent(slixmpp.BaseXMPP): @asyncio.coroutine def accept_routine(self): self.accepting_server = yield from self.loop.create_server(lambda: self, - "127.0.0.1", "8811", reuse_address=True) + "127.0.0.1", 8811, reuse_address=True) def check_stanza_against_all_expected_xpaths(self): pass |