diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-21 01:19:55 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-21 01:47:58 +0900 |
| commit | b5a9d37a7880b05cb3ba1fdbe5b8873295621514 (patch) | |
| tree | fa16db033aa869f0aa4517ba5e9543a033e36e71 /crates/shirabe/tests/platform | |
| parent | e050356c9ba8e1a2c20d2fc842924e189f3cc89e (diff) | |
| download | php-shirabe-b5a9d37a7880b05cb3ba1fdbe5b8873295621514.tar.gz php-shirabe-b5a9d37a7880b05cb3ba1fdbe5b8873295621514.tar.zst php-shirabe-b5a9d37a7880b05cb3ba1fdbe5b8873295621514.zip | |
style: apply rustfmt to ported test files
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/tests/platform')
| -rw-r--r-- | crates/shirabe/tests/platform/runtime_test.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/shirabe/tests/platform/runtime_test.rs b/crates/shirabe/tests/platform/runtime_test.rs index a655c95..4c58404 100644 --- a/crates/shirabe/tests/platform/runtime_test.rs +++ b/crates/shirabe/tests/platform/runtime_test.rs @@ -6,7 +6,10 @@ use shirabe::platform::runtime::Runtime; #[ignore = "Runtime::parse_html_extension_info reaches a todo!() in the php-shim (html_entity_decode)"] fn test_parse_extension_info() { for (html_input, expected_output) in provide_extension_infos() { - assert_eq!(expected_output, Runtime::parse_html_extension_info(html_input)); + assert_eq!( + expected_output, + Runtime::parse_html_extension_info(html_input) + ); } } |
