X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Ft%2Fweb%2Fcsrf.t;h=9d95d0685427c20d038b369de3a5d570992dd901;hb=e877b3248acbff4fa9fb5606e878175577c332d3;hp=24aae40a1063476b5e645e290ef76fb49fbf8c7a;hpb=7588a4ac90a9b07c08a3107cd1107d773be1c991;p=freeside.git diff --git a/rt/t/web/csrf.t b/rt/t/web/csrf.t index 24aae40a1..9d95d0685 100644 --- a/rt/t/web/csrf.t +++ b/rt/t/web/csrf.t @@ -99,9 +99,9 @@ $m->title_is('Possible cross-site request forgery'); my $link = $m->find_link(text_regex => qr{resume your request}); (my $broken_url = $link->url) =~ s/(CSRF_Token)=\w+/$1=crud/; $m->get_ok($broken_url); -$m->content_contains("Queue could not be loaded"); +$m->content_like(qr/Queue\s+could not be loaded/); $m->title_is('RT Error'); -$m->warning_like(qr/Queue could not be loaded/); +$m->warning_like(qr/Queue\s+could not be loaded/); # The token doesn't work for other pages, or other arguments to the same page. $m->add_header(Referer => undef); @@ -134,7 +134,7 @@ $m->content_contains("Create a new ticket", 'ticket create page'); $m->form_name('TicketCreate'); $m->field('Subject', 'Attachments test'); -my $logofile = "$RT::MasonComponentRoot/NoAuth/images/bpslogo.png"; +my $logofile = "$RT::StaticPath/images/bpslogo.png"; open LOGO, "<", $logofile or die "Can't open logo file: $!"; binmode LOGO; my $logo_contents = do {local $/; };