fix: remaining --project before subcommand issues in daemon/reliability tests

Two more instances where --project appeared before the subcommand name.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Alexander Kiselev
2026-02-05 14:27:22 -08:00
co-authored by Claude Opus 4.6
parent 50c922a058
commit 45ae55c146
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -184,9 +184,9 @@ fn test_daemon_start_when_running() {
Command::cargo_bin("ghidra")
.unwrap()
.arg("start")
.arg("--project")
.arg(TEST_PROJECT)
.arg("start")
.arg("--program")
.arg(TEST_PROGRAM)
.assert()
+1 -1
View File
@@ -120,9 +120,9 @@ fn test_bridge_not_ready_error() {
// Ping should work
assert_cmd::Command::cargo_bin("ghidra")
.unwrap()
.arg("ping")
.arg("--project")
.arg(TEST_PROJECT)
.arg("ping")
.timeout(Duration::from_secs(30))
.assert()
.success();