We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d541d8 commit edb9d2bCopy full SHA for edb9d2b
2 files changed
src/documentation.rs
@@ -13,4 +13,4 @@ pub mod installation_guide {
13
pub mod comparison_with_other_tools {
14
//! # Comparison with other tools
15
#![doc = include_str!("../docs/comparison_with_other_tools.md")]
16
-}
+}
src/gron_test.rs
@@ -69,14 +69,14 @@ fn test_primitives() {
69
"null_val": null,
70
"bool_val": true,
71
"num_val": 42,
72
- "float_val": 3.14
+ "float_val": 17.38
73
});
74
75
let result = json_to_gron(&value);
76
assert!(result.contains(r#"json.null_val = null;"#));
77
assert!(result.contains(r#"json.bool_val = true;"#));
78
assert!(result.contains(r#"json.num_val = 42;"#));
79
- assert!(result.contains(r#"json.float_val = 3.14;"#));
+ assert!(result.contains(r#"json.float_val = 17.38;"#));
80
}
81
82
#[test]
0 commit comments