From 5cf3a2ab6275fca8020efc520a58c7bfb0c45f88 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 4 Jan 2023 21:51:37 -0800 Subject: [PATCH] Fixed CI --- test/controller_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/controller_test.rb b/test/controller_test.rb index af6552b15..20bfa9bb4 100644 --- a/test/controller_test.rb +++ b/test/controller_test.rb @@ -84,8 +84,8 @@ def test_explain_analyze end assert_response :success assert_match "(actual time=", response.body - assert_match "Planning Time:", response.body - assert_match "Execution Time:", response.body + assert_match /Planning Time/i, response.body + assert_match /Execution Time/i, response.body end def test_explain_analyze_timeout