From 3183574ff05e23ca20b3181bc9bffc94bfee33f7 Mon Sep 17 00:00:00 2001 From: sunnavy Date: Tue, 28 Nov 2023 16:46:15 -0500 Subject: [PATCH] Update tests to remove the extra space from generated SQL RT commit 863714d30a fixes the duplicated space issue, this commit updates tests accordingly. --- t/searches/menu.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/searches/menu.t b/t/searches/menu.t index 00960b4c..a83b0746 100644 --- a/t/searches/menu.t +++ b/t/searches/menu.t @@ -116,7 +116,7 @@ for my $type ( 'incident', 'ir', 'investigation', 'countermeasure' ) { my ($input_query) = $m->find_all_inputs( name => 'Query' ); is( $input_query->value, - q{( Lifecycle = 'incident_reports' ) AND ( Status = 'new' OR Status = 'open' ) AND MemberOf != 1}, + q{( Lifecycle = 'incident_reports' ) AND ( Status = 'new' OR Status = 'open' ) AND MemberOf != 1}, 'Query input is correct' );