File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def test_client_initialization_defaults(self):
3434
3535 assert client .host == "127.0.0.1"
3636 assert client .port == 12346
37- assert client .timeout == 10 .0
37+ assert client .timeout == 30 .0
3838 assert client .buffer_size == 65536
3939 assert client ._socket is None
4040 assert client ._connected is False
@@ -43,7 +43,7 @@ def test_client_class_attributes(self):
4343 """Test client class attributes are set correctly."""
4444 assert BalatroClient .host == "127.0.0.1"
4545 assert BalatroClient .port == 12346
46- assert BalatroClient .timeout == 10 .0
46+ assert BalatroClient .timeout == 30 .0
4747 assert BalatroClient .buffer_size == 65536
4848
4949 def test_context_manager_with_game_running (self ):
Original file line number Diff line number Diff line change 99# Connection settings
1010HOST = "127.0.0.1"
1111PORT : int = 12346 # default port for BalatroBot TCP API
12- TIMEOUT : float = 10 .0 # timeout for socket operations in seconds
12+ TIMEOUT : float = 30 .0 # timeout for socket operations in seconds
1313BUFFER_SIZE : int = 65536 # 64KB buffer for TCP messages
1414
1515
You can’t perform that action at this time.
0 commit comments