X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Ft%2Fapi%2Fattachment_filename.t;h=aa8acd2d9212183c8a89774c55495e2dcf4787c6;hb=78fe01c3de677e358e6b8948fcc4b6e48d8ad098;hp=bcbfe0057d475558feb35ab8716746ca8c276c66;hpb=6587f6ba7d047ddc1686c080090afe7d53365bd4;p=freeside.git diff --git a/rt/t/api/attachment_filename.t b/rt/t/api/attachment_filename.t index bcbfe0057..aa8acd2d9 100644 --- a/rt/t/api/attachment_filename.t +++ b/rt/t/api/attachment_filename.t @@ -1,3 +1,5 @@ +use strict; +use warnings; use RT::Test tests => 5; use MIME::Entity; my $ticket = RT::Ticket->new(RT->SystemUser); @@ -8,18 +10,18 @@ my $mime = MIME::Entity->build( ); $mime->attach( - Path => 'share/html/NoAuth/images/bpslogo.png', + Path => 'share/static/images/bpslogo.png', Type => 'image/png', ); $mime->attach( - Path => 'share/html/NoAuth/images/bpslogo.png', + Path => 'share/static/images/bpslogo.png', Type => 'image/png', Filename => 'bpslogo.png', ); $mime->attach( - Path => 'share/html/NoAuth/images/bpslogo.png', + Path => 'share/static/images/bpslogo.png', Filename => 'images/bpslogo.png', Type => 'image/png', );