diff options
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) + ); } } |
