We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2da1ad commit 7f6d7cfCopy full SHA for 7f6d7cf
1 file changed
src/output/mod.rs
@@ -60,7 +60,10 @@ mod tests {
60
let value = json!({ "data": { "a": 1, "b": 2 } });
61
let result = format_json(&value).unwrap();
62
assert!(!result.contains('\n'), "output should not contain newlines");
63
- assert!(!result.contains(" "), "output should not contain indentation");
+ assert!(
64
+ !result.contains(" "),
65
+ "output should not contain indentation"
66
+ );
67
}
68
69
#[test]
0 commit comments