We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2daff commit cbc0982Copy full SHA for cbc0982
1 file changed
tests/data_tree_reflection.rs
@@ -139,7 +139,8 @@ fn display_excessive_children() {
139
let expected = if cfg!(unix) {
140
r#"ExcessiveChildren: "root/b/0" (Bytes(321)) is less than a child named "def" (Bytes(456))"#
141
} else if cfg!(windows) {
142
- r#"ExcessiveChildren: "root\b\0" (Bytes(321)) is less than a child named "def" (Bytes(456))"#
+ // TODO: stop using debug format
143
+ r#"ExcessiveChildren: "root\\b\\0" (Bytes(321)) is less than a child named "def" (Bytes(456))"#
144
} else {
145
eprintln!("ACTUAL: {actual}");
146
panic!("This platform isn't supported!");
0 commit comments