Skip to content

Commit 192a0d2

Browse files
committed
Remove extra parameters in test
Went overboard with override=None
1 parent cc3b8e0 commit 192a0d2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

tests/resources/test_auth.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,7 @@ def test_detect_provider(self):
370370
auth = Auth(mock_http_client)
371371
req = {
372372
"email": "test@gmail.com",
373-
"all_provider_types": True,
374-
overrides=None
373+
"all_provider_types": True
375374
}
376375

377376
res = auth.detect_provider(req)

tests/resources/test_calendars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def test_get_availability(self, http_client_response):
158158
}
159159
],
160160
"round_robin_event_id": "event-123",
161-
},overrides=None
161+
}
162162
}
163163

164164
calendars.get_availability(request_body)

0 commit comments

Comments
 (0)