We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4704b4 commit 7c9952cCopy full SHA for 7c9952c
tests/e2e/idempotency/test_idempotency_dynamodb.py
@@ -130,4 +130,5 @@ def test_idempotent_function_thread_safety(function_thread_safety_handler_fn_arn
130
assert function_thread["exception"] is None
131
assert function_thread["output"] is not None
132
133
- assert first_execution_response == second_execution_response
+ # we use set() here because we want to compare the elements regardless of their order in the array
134
+ assert set(first_execution_response) == set(second_execution_response)
0 commit comments