per-agent configuration of batch processors, #71837
[freeside.git] / rt / t / api / attachment_filename.t
index bcbfe00..aa8acd2 100644 (file)
@@ -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',
 );