From b44bd09c0078e8912de6cc887859ac2c25491c94 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Mon, 21 Aug 2023 15:44:46 -0700 Subject: [PATCH] add failing test to ensure merge queues are working as expected --- geo/src/algorithm/area.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/geo/src/algorithm/area.rs b/geo/src/algorithm/area.rs index 744112f13..f14cd57c2 100644 --- a/geo/src/algorithm/area.rs +++ b/geo/src/algorithm/area.rs @@ -532,4 +532,9 @@ mod test { max_relative = 0.0001 ); } + + #[test] + fn failing_test() { + panic!("This intentionally panics to test that CI won't allow it to be merged"); + } }