diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index b3fb3dd..5efd788 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -24,8 +24,7 @@ macro_rules! test_input_with_branching { #[test] fn []() { let filename = format!("tests/instances/{}/{}.cnf", stringify!($dir), stringify!($name)); - let mut dac = compile(PathBuf::from(filename), $b, None, None, 0.0).unwrap(); - let sol = dac.evaluate(); + let sol = compile(PathBuf::from(filename), $b, None, None, 0.0).unwrap(); let expected = Float::with_val(113, $value); assert!((expected - sol).abs() < 0.000001); }