Skip to content

Commit 8b70956

Browse files
Formatting
1 parent 818676f commit 8b70956

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

python/e2e/test_session.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ async def test_should_resume_a_session_using_a_new_client(self, ctx: E2ETestCont
183183
assert "2" in answer.data.content
184184

185185
# Resume using a new client
186-
github_token = "fake-token-for-e2e-tests" if os.environ.get("GITHUB_ACTIONS") == "true" else None
186+
github_token = (
187+
"fake-token-for-e2e-tests" if os.environ.get("GITHUB_ACTIONS") == "true" else None
188+
)
187189
new_client = CopilotClient(
188190
{
189191
"cli_path": ctx.cli_path,

python/e2e/testharness/context.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ async def setup(self):
6060

6161
# Create the shared client (like Node.js/Go do)
6262
# Use fake token in CI to allow cached responses without real auth
63-
github_token = "fake-token-for-e2e-tests" if os.environ.get("GITHUB_ACTIONS") == "true" else None
63+
github_token = (
64+
"fake-token-for-e2e-tests" if os.environ.get("GITHUB_ACTIONS") == "true" else None
65+
)
6466
self._client = CopilotClient(
6567
{
6668
"cli_path": self.cli_path,

0 commit comments

Comments
 (0)