From ebd08caa91b94a55514ea863244d7e38d429baf6 Mon Sep 17 00:00:00 2001 From: natan Date: Mon, 21 Nov 2022 19:50:22 +0200 Subject: [PATCH] Formats code. --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 955eaaa..43f8e81 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -1681,7 +1681,7 @@ fn test_long_expression_i89() { let expected = x * 0.2 * 5.0 / 4.0 + x * 2.0 * 4.0 * 1.0 * 1.0 * 1.0 * 1.0 * 1.0 * 1.0 * 1.0 + 7.0 * y.sin() - - z / (3.0 / 2.0 / (1.0 - x * 4.0 * 1.0 * 1.0 * 1.0 * 1.0)).sin() ; + - z / (3.0 / 2.0 / (1.0 - x * 4.0 * 1.0 * 1.0 * 1.0 * 1.0)).sin(); let actual: FloatType = tree.eval_float_with_context(&context).unwrap(); assert!( (expected - actual).abs() < expected.abs().min(actual.abs()) * 1e-12,