Skip to content

Commit 404ab9e

Browse files
committed
Removes unneeded test
1 parent 7a3d211 commit 404ab9e

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

tests/test_api.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,6 @@ def test_should_verify_ssl(self):
1515
assert my_api._is_verify_ssl is False
1616

1717

18-
class TestProcessParameters:
19-
def test_camel_case_transformer(self):
20-
params = dict(search=dict(device_search=dict(id=123), include_overlapped_trips=True))
21-
fixed_params = api.process_parameters(params)
22-
assert fixed_params is not None
23-
assert "search" in fixed_params
24-
assert "deviceSearch" in fixed_params["search"]
25-
assert "id" in fixed_params["search"]["deviceSearch"]
26-
assert fixed_params["search"]["deviceSearch"]["id"] == 123
27-
assert "includeOverlappedTrips" in fixed_params["search"]
28-
assert fixed_params["search"]["includeOverlappedTrips"]
29-
30-
3118
class TestProcessResults:
3219
def test_handle_server_exception(self):
3320
exception_response = dict(

0 commit comments

Comments
 (0)