We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90c2963 commit b486a2cCopy full SHA for b486a2c
tests/balatrobot/test_client.py
@@ -7,7 +7,6 @@
7
import pytest
8
9
from balatrobot.client import BalatroClient
10
-from balatrobot.enums import State
11
from balatrobot.exceptions import BalatroError, ConnectionFailedError
12
from balatrobot.models import G
13
@@ -104,7 +103,7 @@ def test_disconnect_when_not_connected(self, port):
104
103
assert client._connected is False
105
assert client._socket is None
106
107
- def test_connection_failure_wrong_port(self, port):
+ def test_connection_failure_wrong_port(self):
108
"""Test connection failure with wrong port."""
109
client = BalatroClient(port=54321) # Use invalid port directly
110
0 commit comments