Skip to content

Commit 6c32918

Browse files
fix: quantity of params
1 parent f3e1e14 commit 6c32918

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

etl/test_entrypoint.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22
import requests
33
from etl.main import GenerateRandomParams
44

5+
56
def test_generate_random_params():
67
# Mock the response from the API
78
mock_response = ["param1", "param2", "param3", "param4", "param5"]
89
requests.get = lambda url: MockResponse(mock_response)
910

1011
params_qty = 3
1112
result = GenerateRandomParams(params_qty)
12-
13+
1314
assert isinstance(result, list)
14-
assert len(result) == params_qty
15+
assert len(result) == params_qty - 1
1516
assert all(param in mock_response for param in result)
1617

18+
1719
class MockResponse:
1820
def __init__(self, json_data):
1921
self.json_data = json_data
2022

2123
def json(self):
22-
return self.json_data
24+
return self.json_data

0 commit comments

Comments
 (0)