diff --git a/protocol/src/message.rs b/protocol/src/message.rs index 610bbce..1784a73 100644 --- a/protocol/src/message.rs +++ b/protocol/src/message.rs @@ -81,7 +81,7 @@ mod tests { fn test_parse_response_message_exponential() { let result = parse_response_message(vec!["value=9.401652e+01".to_string()], "value".to_string()); - assert_almost_equal!(result.unwrap(), 451.4824, 0.1); + assert_almost_equal!(result.unwrap(), 94.016, 0.1); } #[test]