Skip to content

Commit 367277d

Browse files
stephentoubCopilot
andcommitted
Fix lint/format failures in Node and Python e2e tests
- nodejs/test/e2e/rpc_remote.e2e.test.ts: re-run prettier --write to fix a small indent in waitForCondition call. - python/e2e/test_rpc_server_e2e.py: move LocalSessionMetadataValue into its correct alphabetical position in the from copilot.rpc import block (ruff I001). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent beaa1c8 commit 367277d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

nodejs/test/e2e/rpc_remote.e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ describe("Session remote RPC", async () => {
7070
event.type === "session.remote_steerable_changed" &&
7171
event.data.remoteSteerable === false
7272
),
73-
{ timeoutMessage: "Timed out waiting for remote steerable=false event." }
73+
{ timeoutMessage: "Timed out waiting for remote steerable=false event." }
7474
);
7575
} finally {
7676
await session.disconnect();

python/e2e/test_rpc_server_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from copilot.rpc import (
1818
AccountGetQuotaRequest,
1919
ConnectRemoteSessionParams,
20+
LocalSessionMetadataValue,
2021
MCPDiscoverRequest,
2122
ModelsListRequest,
2223
PingRequest,
@@ -26,7 +27,6 @@
2627
SessionFSSetProviderConventions,
2728
SessionFSSetProviderRequest,
2829
SessionListFilter,
29-
LocalSessionMetadataValue,
3030
SessionsBulkDeleteRequest,
3131
SessionsCheckInUseRequest,
3232
SessionsCloseRequest,

0 commit comments

Comments
 (0)