Skip to content

Commit 886c12d

Browse files
Fix missing ** spread on _make_options in propagate-options test
The multi-line _make_options(...) call in test_should_propagate_process_options_to_spawned_cli was missed by my earlier sed pass that converted CopilotClient(_make_options(...)) to CopilotClient(**_make_options(...)) — the regex only matched single-line forms. Add the missing ** here. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 5676e4f commit 886c12d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/e2e/test_client_options_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ async def test_should_propagate_process_options_to_spawned_cli(self, ctx: E2ETes
207207
f.write(FAKE_STDIO_CLI_SCRIPT)
208208

209209
client = CopilotClient(
210-
_make_options(
210+
**_make_options(
211211
ctx,
212212
cli_path=cli_path,
213213
base_directory=copilot_home_from_option,

0 commit comments

Comments
 (0)