fix exponential message test

This commit is contained in:
Ondrej Novak 2026-04-11 16:22:18 +02:00
parent 813b75fbc5
commit 6f2c044e1c
Signed by: handy
SSH Key Fingerprint: SHA256:jlNm8ijkaMl4X7+nn3zBFTJufdQgT4unKJoZVH6kYTM
1 changed files with 1 additions and 1 deletions

View File

@ -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]