Skip to content

Commit 50b8eae

Browse files
committed
Fix clippy lint
1 parent de1efb1 commit 50b8eae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ungron_test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ json.user.age = 30;"#;
5151
fn test_numbers() {
5252
let input = r#"json = {};
5353
json.integer = 42;
54-
json.float = 3.14;
54+
json.float = 17.38;
5555
json.negative = -5;"#;
5656

5757
let result = gron_to_json(input).unwrap();
5858
let expected: JsonValue = serde_json::json!({
5959
"integer": 42,
60-
"float": 3.14,
60+
"float": 17.38,
6161
"negative": -5
6262
});
6363

0 commit comments

Comments
 (0)