From 678c881377875d4de046f2f933ab18dc3247d972 Mon Sep 17 00:00:00 2001 From: Ophir LOJKINE Date: Wed, 23 Mar 2022 13:55:51 +0100 Subject: [PATCH] fix test --- tests/integration.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 63850bb..81b5128 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -372,7 +372,6 @@ fn test_builtin_functions() { assert_eq!(eval("is_infinite(1.0/0.0)"), Ok(Value::Boolean(true))); assert_eq!(eval("is_normal(1.0/0.0)"), Ok(Value::Boolean(false))); assert_eq!(eval("is_normal(0)"), Ok(Value::Boolean(false))); - assert_eq!(eval("is_subnormal(0)"), Ok(Value::Boolean(false))); // Other assert_eq!(eval("min(4.0, 3)"), Ok(Value::Int(3))); assert_eq!(eval("max(4.0, 3)"), Ok(Value::Float(4.0)));