Skip to content

Commit 447e64f

Browse files
committed
test(CLI): remove removed terminal command test
1 parent 25ab03f commit 447e64f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/scripts/cli_e2e.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ def __init__(self, routes: dict[str, tuple[int, str, bytes]]) -> None:
4242

4343
@property
4444
def base_url(self) -> str:
45-
host, port = self.server.server_address
45+
address = self.server.server_address
46+
host = address[0]
47+
port = address[1]
4648
return f"http://{host}:{port}"
4749

4850
def create_handler(self):
@@ -253,7 +255,6 @@ def command_help_details(self) -> None:
253255
"db-info": "DATABASE INFORMATION",
254256
"update": "CHECK FOR UPDATES",
255257
"gui": "LAUNCH GUI",
256-
"terminal": "LAUNCH TERMINAL UI",
257258
"tui": "LAUNCH TERMINAL UI",
258259
}
259260
for command, expected in expectations.items():

0 commit comments

Comments
 (0)