Skip to content

Commit

Permalink
fix valid keys
Browse files Browse the repository at this point in the history
  • Loading branch information
RMGS\amro.sami committed Nov 12, 2018
1 parent 09afc38 commit 49df3e1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_outbound.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ def test_completed(self, fake, message_id):
self.client.get.return_value = [{'id': message_id}]

ids = fake.pytuple(10, True, int)

ids_str = ""

valid_keys = ['ids']

ids_str = ""
for idx, arg in enumerate(ids):
if idx == len(ids) - 1:
ids_str += str(arg)
Expand Down

0 comments on commit 49df3e1

Please sign in to comment.