From cc9af23d2afe7fcb3aead6f1eba0b8e77c8eb2e3 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Tue, 12 Dec 2023 15:20:53 +0800 Subject: [PATCH] Fix test. --- tests/time.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/time.rs b/tests/time.rs index 1e9972f28..c66a094d3 100644 --- a/tests/time.rs +++ b/tests/time.rs @@ -117,5 +117,6 @@ fn test_timestamp_op() { 42 ); - engine.run("timestamp()-24>>-60").unwrap(); + // Check edge case for crashes + let _ = engine.run("timestamp()-24>>-60"); }