Skip to content

Commit

Permalink
Satisy Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpombrio committed Apr 5, 2024
1 parent 0a19726 commit 9166247
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ fn test_json() {
let doc_name = Path::new("<testing>");
let source = "{\"primitives\": [true, false, null, 5.3, \"string!\"]}";
engine
.load_doc_from_source(&doc_name, &language_name, source)
.load_doc_from_source(doc_name, &language_name, source)
.unwrap();
let output = engine.print_source(&doc_name).unwrap();
let output = engine.print_source(doc_name).unwrap();
assert_eq!(output, source);
}

0 comments on commit 9166247

Please sign in to comment.