Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michelhe committed Aug 24, 2023
1 parent 741005b commit ccf6db8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/glogger/test_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ def _send_once_to_server(self, data: bytes) -> None:

def __init__(self, *args, max_total_length=100000, max_message_size=10000, overflow_drop_factor=0.25, **kwargs):
super().__init__(
self.MockSender("app", *args, auth_token="token", scheme="http", send_min_interval=0.2, max_send_tries=1, **kwargs),
self.MockSender(
"app", *args, auth_token="token", scheme="http", send_min_interval=0.2, max_send_tries=1, **kwargs
),
max_total_length=max_total_length,
max_message_size=max_message_size,
overflow_drop_factor=overflow_drop_factor,
Expand Down

0 comments on commit ccf6db8

Please sign in to comment.