Skip to content

Commit 9c77aa8

Browse files
committed
update redriveCount value in tests
1 parent 06bffa4 commit 9c77aa8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_tracing.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ def test_step_function_trace_data(self):
620620
sfn_event = {
621621
"Execution": {
622622
"Id": "665c417c-1237-4742-aaca-8b3becbb9e75",
623-
"RedriveCount": "0",
623+
"RedriveCount": 0,
624624
},
625625
"StateMachine": {},
626626
"State": {
@@ -658,7 +658,7 @@ def test_step_function_trace_data_redrive(self):
658658
sfn_event = {
659659
"Execution": {
660660
"Id": "665c417c-1237-4742-aaca-8b3becbb9e75",
661-
"RedriveCount": "1",
661+
"RedriveCount": 1,
662662
},
663663
"StateMachine": {},
664664
"State": {
@@ -697,7 +697,7 @@ def test_step_function_trace_data_lambda_root(self):
697697
"_datadog": {
698698
"Execution": {
699699
"Id": "665c417c-1237-4742-aaca-8b3becbb9e75",
700-
"RedriveCount": "0",
700+
"RedriveCount": 0,
701701
},
702702
"StateMachine": {},
703703
"State": {
@@ -740,7 +740,7 @@ def test_step_function_trace_data_sfn_root(self):
740740
"_datadog": {
741741
"Execution": {
742742
"Id": "665c417c-1237-4742-aaca-8b3becbb9e75",
743-
"RedriveCount": "0",
743+
"RedriveCount": 0,
744744
},
745745
"StateMachine": {},
746746
"State": {

0 commit comments

Comments
 (0)