@@ -68,16 +68,6 @@ def test_is_transaction_completed_ok(self):
6868 def test_is_transaction_completed_ok_last (self ):
6969 with patch ('requests.post' ) as mock_post :
7070 mock_post .side_effect = [
71- FakeResponse (status_code = 200 , text = '{}' ),
72- FakeResponse (status_code = 200 , text = '{}' ),
73- FakeResponse (status_code = 200 , text = '{}' ),
74- FakeResponse (status_code = 200 , text = '{}' ),
75- FakeResponse (status_code = 200 , text = '{}' ),
76- FakeResponse (status_code = 200 , text = '{}' ),
77- FakeResponse (status_code = 200 , text = '{}' ),
78- FakeResponse (status_code = 200 , text = '{}' ),
79- FakeResponse (status_code = 200 , text = '{}' ),
80- FakeResponse (status_code = 200 , text = '{}' ),
8171 FakeResponse (status_code = 200 , text = '{}' ),
8272 FakeResponse (status_code = 200 , text = '{}' ),
8373 FakeResponse (status_code = 200 , text = '{}' ),
@@ -94,16 +84,6 @@ def test_is_transaction_completed_ok_last(self):
9484 def test_is_transaction_completed_ok_multiple_logs (self ):
9585 with patch ('requests.post' ) as mock_post :
9686 mock_post .side_effect = [
97- FakeResponse (status_code = 200 , text = '{}' ),
98- FakeResponse (status_code = 200 , text = '{}' ),
99- FakeResponse (status_code = 200 , text = '{}' ),
100- FakeResponse (status_code = 200 , text = '{}' ),
101- FakeResponse (status_code = 200 , text = '{}' ),
102- FakeResponse (status_code = 200 , text = '{}' ),
103- FakeResponse (status_code = 200 , text = '{}' ),
104- FakeResponse (status_code = 200 , text = '{}' ),
105- FakeResponse (status_code = 200 , text = '{}' ),
106- FakeResponse (status_code = 200 , text = '{}' ),
10787 FakeResponse (status_code = 200 , text = '{}' ),
10888 FakeResponse (status_code = 200 , text = '{}' ),
10989 FakeResponse (status_code = 200 , text = '{}' ),
@@ -120,16 +100,6 @@ def test_is_transaction_completed_ok_multiple_logs(self):
120100 def test_is_transaction_completed_ng_count_over (self ):
121101 with patch ('requests.post' ) as mock_post :
122102 mock_post .side_effect = [
123- FakeResponse (status_code = 200 , text = '{}' ),
124- FakeResponse (status_code = 200 , text = '{}' ),
125- FakeResponse (status_code = 200 , text = '{}' ),
126- FakeResponse (status_code = 200 , text = '{}' ),
127- FakeResponse (status_code = 200 , text = '{}' ),
128- FakeResponse (status_code = 200 , text = '{}' ),
129- FakeResponse (status_code = 200 , text = '{}' ),
130- FakeResponse (status_code = 200 , text = '{}' ),
131- FakeResponse (status_code = 200 , text = '{}' ),
132- FakeResponse (status_code = 200 , text = '{}' ),
133103 FakeResponse (status_code = 200 , text = '{}' ),
134104 FakeResponse (status_code = 200 , text = '{}' ),
135105 FakeResponse (status_code = 200 , text = '{}' ),
0 commit comments