fix: add missing port argument to open_project test calls

The merge of story-209 (positional path argument) added a port parameter
to open_project, but two test call sites were not updated.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dave
2026-02-26 15:46:36 +00:00
parent 5ce2ec8c34
commit 930708ebac

View File

@@ -1088,6 +1088,7 @@ mod tests {
project_dir.to_string_lossy().to_string(), project_dir.to_string_lossy().to_string(),
&state, &state,
&store, &store,
0,
) )
.await .await
.unwrap(); .unwrap();
@@ -1111,6 +1112,7 @@ mod tests {
project_dir.to_string_lossy().to_string(), project_dir.to_string_lossy().to_string(),
&state, &state,
&store, &store,
0,
) )
.await .await
.unwrap(); .unwrap();