summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordrebs <drebs@riseup.net>2017-09-29 19:36:03 -0300
committerdrebs <drebs@riseup.net>2017-09-30 00:47:15 -0300
commitc2395e4567d40252bf2a8e7cbe46ce45cc56d7ea (patch)
tree32f39a5f7228efbb927f617ae491f4494fb3576e /tests
parente8dcc150cf83ed4130d2813d1ad51e16e50a19ef (diff)
[test] fix e2e test call to remote_list
Diffstat (limited to 'tests')
-rw-r--r--tests/e2e/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/e2e/utils.py b/tests/e2e/utils.py
index e4c9df7e..24a0b63c 100644
--- a/tests/e2e/utils.py
+++ b/tests/e2e/utils.py
@@ -162,7 +162,7 @@ def get_incoming_fd(client):
while not pending:
print("attempting to fetch incoming blob (%d/10)" % attempts)
pending = yield client.blobmanager.remote_list(
- namespace='MX', filter_flags=Flags.PENDING)
+ namespace='MX', filter_flag=Flags.PENDING)
if not pending and attempts == 10:
raise Exception("Timed out waiting for message to get delivered.")
attempts += 1