Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rthalley committed Mar 10, 2024
1 parent 9c9b097 commit a6feb06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
from aioquic.quic import events
from aioquic.quic.configuration import SMALLEST_MAX_DATAGRAM_SIZE, QuicConfiguration
from aioquic.quic.connection import (
STREAM_COUNT_MAX,
MAX_LOCAL_CHALLENGES,
STREAM_COUNT_MAX,
NetworkAddress,
QuicConnection,
QuicConnectionError,
Expand Down Expand Up @@ -1742,7 +1742,7 @@ def test_local_path_challenges_are_bounded(self):
for i in range(2, MAX_LOCAL_CHALLENGES + 2):
self.assertEqual(
server._local_challenges[int.to_bytes(i, 8, "big")].addr,
f"1.2.3.{i}"
f"1.2.3.{i}",
)

def test_handle_path_response_frame_bad(self):
Expand Down

0 comments on commit a6feb06

Please sign in to comment.