diff options
Diffstat (limited to 'rt/t/api/attachment_filename.t')
-rw-r--r-- | rt/t/api/attachment_filename.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/t/api/attachment_filename.t b/rt/t/api/attachment_filename.t index 6bfc7072f..aa8acd2d9 100644 --- a/rt/t/api/attachment_filename.t +++ b/rt/t/api/attachment_filename.t @@ -10,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', ); |