diff options
author | louiz’ <louiz@louiz.org> | 2016-10-21 01:00:52 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-10-21 01:00:52 +0200 |
commit | 4388b9c31122f98c4291f8fba5a0d3524902b8d7 (patch) | |
tree | 4418da26be65352c43f777aa85b94c2a7decb34e | |
parent | 479708c83eeea96986692ccf85cf06944a1ca919 (diff) | |
download | biboumi-4388b9c31122f98c4291f8fba5a0d3524902b8d7.tar.gz biboumi-4388b9c31122f98c4291f8fba5a0d3524902b8d7.tar.bz2 biboumi-4388b9c31122f98c4291f8fba5a0d3524902b8d7.tar.xz biboumi-4388b9c31122f98c4291f8fba5a0d3524902b8d7.zip |
Remove an unused variable in e2e
-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 d04238e..56d7a6d 100644 --- a/tests/end_to_end/__main__.py +++ b/tests/end_to_end/__main__.py @@ -129,7 +129,7 @@ def match(stanza, xpath): def check_xpath(xpaths, xmpp, after, stanza): - for i, xpath in enumerate(xpaths): + for xpath in enumerate(xpaths): matched = match(stanza, xpath) if not matched: raise StanzaError("Received stanza “%s” did not match expected xpath “%s”" % (stanza, xpath)) |