aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/util/error_handler_test.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/tests/util/error_handler_test.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/tests/util/error_handler_test.rs')
-rw-r--r--crates/shirabe/tests/util/error_handler_test.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/tests/util/error_handler_test.rs b/crates/shirabe/tests/util/error_handler_test.rs
index efaf4e11..9a34fd73 100644
--- a/crates/shirabe/tests/util/error_handler_test.rs
+++ b/crates/shirabe/tests/util/error_handler_test.rs
@@ -30,7 +30,7 @@ impl Drop for TearDown {
#[ignore = "depends on PHP runtime routing an undefined-index notice through set_error_handler; no Rust equivalent for $array['baz'] triggering ErrorHandler::handle"]
#[test]
fn test_error_handler_capture_notice() {
- // TODO(phase-d): depends on PHP runtime routing an undefined-index notice through
+ // TODO(php-runtime): depends on PHP runtime routing an undefined-index notice through
// set_error_handler; no Rust equivalent for $array['baz'] triggering
// ErrorHandler::handle.
todo!()
@@ -39,7 +39,7 @@ fn test_error_handler_capture_notice() {
#[ignore = "depends on PHP runtime emitting a TypeError/warning from array_merge([], 'string') via set_error_handler; no Rust equivalent"]
#[test]
fn test_error_handler_capture_warning() {
- // TODO(phase-d): depends on PHP runtime emitting a TypeError/warning from
+ // TODO(php-runtime): depends on PHP runtime emitting a TypeError/warning from
// array_merge([], 'string') via set_error_handler; no Rust equivalent.
todo!()
}
@@ -47,7 +47,7 @@ fn test_error_handler_capture_warning() {
#[ignore = "depends on the PHP @ error-suppression operator and trigger_error routing through set_error_handler; no Rust equivalent"]
#[test]
fn test_error_handler_respects_at_operator() {
- // TODO(phase-d): depends on the PHP @ error-suppression operator and trigger_error
+ // TODO(php-runtime): depends on the PHP @ error-suppression operator and trigger_error
// routing through set_error_handler; no Rust equivalent.
todo!()
}