Skip to content

Commit

Permalink
Update tests to remove the extra space from generated SQL
Browse files Browse the repository at this point in the history
RT commit 863714d30a fixes the duplicated space issue, this commit
updates tests accordingly.
  • Loading branch information
sunnavy committed Nov 28, 2023
1 parent 70654f0 commit 3183574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/searches/menu.t
Original file line number Diff line number Diff line change
Expand Up @@ -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'
);

Expand Down

0 comments on commit 3183574

Please sign in to comment.