we no longer need this test
[catagits/Catalyst-Runtime.git] / t / lib / TestAppEncoding / Controller / Root.pm
index 64caa28..b82e1bf 100644 (file)
@@ -9,7 +9,7 @@ __PACKAGE__->config->{namespace} = '';
 sub binary : Local {
     my ($self, $c) = @_;
     $c->res->body(do {
-        open(my $fh, '<', $c->path_to('..', 'catalyst_130pix.gif')) or die $!; 
+        open(my $fh, '<', $c->path_to('..', '..', 'catalyst_130pix.gif')) or die $!; 
         binmode($fh); 
         local $/ = undef; <$fh>;
     });