aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util/process_executor.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-12 00:19:10 +0900
committernsfisis <nsfisis@gmail.com>2026-08-12 00:19:36 +0900
commit561924db750cbb4e4c183f9616472ed9a5b0fc7f (patch)
tree13d27f8c4d3a0fca8cfd447ea32befa9aa358228 /crates/shirabe/src/util/process_executor.rs
parentdaa1acf091627f4f1af63ad44eee988048fa4136 (diff)
downloadphp-shirabe-561924db750cbb4e4c183f9616472ed9a5b0fc7f.tar.gz
php-shirabe-561924db750cbb4e4c183f9616472ed9a5b0fc7f.tar.zst
php-shirabe-561924db750cbb4e4c183f9616472ed9a5b0fc7f.zip
docs(todo): retag TODO markers by root cause
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/util/process_executor.rs')
-rw-r--r--crates/shirabe/src/util/process_executor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/util/process_executor.rs b/crates/shirabe/src/util/process_executor.rs
index 4808d0be..3f300317 100644
--- a/crates/shirabe/src/util/process_executor.rs
+++ b/crates/shirabe/src/util/process_executor.rs
@@ -161,7 +161,7 @@ impl ProcessExecutor {
/// Forwards to `execute`, returning the status code (1 on Err for compatibility) — this
/// mirrors PHP call sites that check the `int` return of `execute()` without a surrounding
/// `try`/`catch`, where an uncaught mock-mismatch exception would otherwise propagate.
- // TODO(phase-d): under a strict `ProcessExecutorMock`, an incomplete expectation list now
+ // TODO(mock): under a strict `ProcessExecutorMock`, an incomplete expectation list now
// surfaces here as a swallowed "exit code 1" instead of the old `panic!`, so a future test
// ported through this call site could silently take a wrong branch instead of failing loudly.
// `ProcessExecutorMockGuard::__assert_complete` still catches unconsumed expectations at