We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf241c commit 2cefd58Copy full SHA for 2cefd58
1 file changed
src/transport/vector_compat/convert.rs
@@ -160,9 +160,9 @@ mod tests {
160
#[test]
161
fn convert_float_value() {
162
let v = event::Value {
163
- kind: Some(event::value::Kind::Float(2.718)),
+ kind: Some(event::value::Kind::Float(1.234)),
164
};
165
- assert_eq!(vector_value_to_json(&v), serde_json::json!(2.718));
+ assert_eq!(vector_value_to_json(&v), serde_json::json!(1.234));
166
}
167
168
0 commit comments