Skip to content

Commit

Permalink
Make Debug test compatible with preserve_order
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 21, 2022
1 parent 0671603 commit de62e3e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ fn error() {
#[test]
fn indented() {
let j = json!({
"Null": null,
"Array": [true],
"Bool": true,
"EmptyArray": [],
"EmptyObject": {},
"Null": null,
"Number": 1,
"String": "...",
"Array": [true],
"EmptyArray": [],
"EmptyObject": {}
});
let expected = indoc! {r#"
Object({
Expand Down

0 comments on commit de62e3e

Please sign in to comment.