Skip to content

Commit 49df3e1

Browse files
author
RMGS\amro.sami
committed
fix valid keys
1 parent 09afc38 commit 49df3e1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/test_outbound.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,10 @@ def test_completed(self, fake, message_id):
9797
self.client.get.return_value = [{'id': message_id}]
9898

9999
ids = fake.pytuple(10, True, int)
100-
101-
ids_str = ""
100+
101+
valid_keys = ['ids']
102+
103+
ids_str = ""
102104
for idx, arg in enumerate(ids):
103105
if idx == len(ids) - 1:
104106
ids_str += str(arg)

0 commit comments

Comments
 (0)