aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests')
-rw-r--r--crates/shirabe/tests/io/console_io_test.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/tests/io/console_io_test.rs b/crates/shirabe/tests/io/console_io_test.rs
index b0c6380d..e6b19c05 100644
--- a/crates/shirabe/tests/io/console_io_test.rs
+++ b/crates/shirabe/tests/io/console_io_test.rs
@@ -291,11 +291,11 @@ fn test_has_authentication() {
assert!(!console_io.has_authentication("repoName2"));
}
-#[ignore = "data provider includes malformed-UTF-8 inputs (e.g. \\xFF, \\xC3\\x28); sanitize() takes PhpMixed::String which is UTF-8-only and cannot carry invalid bytes, so those cases are unrepresentable"]
+#[ignore = "data provider includes malformed-UTF-8 inputs (e.g. \\xFF, \\xC3\\x28); sanitize() takes a &str which is UTF-8-only and cannot carry invalid bytes, so those cases are unrepresentable"]
#[test]
fn test_sanitize() {
// TODO(bytes): the data provider includes malformed-UTF-8 inputs (e.g. \xFF, \xC3\x28);
- // sanitize() takes PhpMixed::String which is UTF-8-only and cannot carry invalid bytes, so
- // those cases are unrepresentable.
+ // sanitize() takes a &str which is UTF-8-only and cannot carry invalid bytes, so those cases
+ // are unrepresentable.
todo!()
}