Skip to content

Commit ba26418

Browse files
committed
Fix coverage
1 parent 8b8165d commit ba26418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httpcore/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_minimum_timeout(self, timeout: typing.Optional[float]) -> typing.Any:
2828
return timeout
2929
if timeout is None:
3030
return self.timeouts["total"]
31-
return min(timeout, self.timeouts["total"])
31+
return min(timeout, self.timeouts["total"]) # pragma: nocover
3232

3333

3434
def is_socket_readable(sock: typing.Optional[socket.socket]) -> bool:

0 commit comments

Comments
 (0)