From 930708ebac18c4f67b7d895c8198df3061c9b0af Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 26 Feb 2026 15:46:36 +0000 Subject: [PATCH] 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 --- server/src/io/fs.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/io/fs.rs b/server/src/io/fs.rs index 9d2ec2d..bcec3f8 100644 --- a/server/src/io/fs.rs +++ b/server/src/io/fs.rs @@ -1088,6 +1088,7 @@ mod tests { project_dir.to_string_lossy().to_string(), &state, &store, + 0, ) .await .unwrap(); @@ -1111,6 +1112,7 @@ mod tests { project_dir.to_string_lossy().to_string(), &state, &store, + 0, ) .await .unwrap();