summaryrefslogtreecommitdiff
path: root/tests/end_to_end/__main__.py
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2016-10-12 20:59:13 +0200
committerlouiz’ <louiz@louiz.org>2016-10-12 21:00:05 +0200
commitc3a7cd36279a123feec6d3665a4ba64b7ac1866b (patch)
tree3c703d5fa67574af991f67828dfd43e8ccd68499 /tests/end_to_end/__main__.py
parent827a1eedf8936e90fe25fa851e7a13b1730f37f6 (diff)
downloadbiboumi-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
Diffstat (limited to 'tests/end_to_end/__main__.py')
-rw-r--r--tests/end_to_end/__main__.py2
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