From: Matt S Trout Date: Fri, 3 Nov 2006 15:23:35 +0000 (+0000) Subject: fix broken test X-Git-Tag: 5.7099_04~296 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=f720422c9edfdbeff064e797176e42c105b3f25b fix broken test --- diff --git a/t/live_component_controller_action_chained.t b/t/live_component_controller_action_chained.t index 619a7ed..aba2bee 100644 --- a/t/live_component_controller_action_chained.t +++ b/t/live_component_controller_action_chained.t @@ -733,10 +733,9 @@ sub run_tests { # { my @expected = qw[ - TestApp::Controller::Action::Chained->begin TestApp::Controller::Action::Chained::Root->rootsub TestApp::Controller::Action::Chained::Root->endpointsub - TestApp::Controller::Action::Chained->end + TestApp->end ]; my $expected = join( ", ", @expected ); @@ -744,7 +743,7 @@ sub run_tests { ok( my $response = request('http://localhost/rootsub/1/endpointsub/2'), 'chained in root namespace' ); is( $response->header('X-Catalyst-Executed'), $expected, 'Executed actions' ); - is( $response->content, '1; 2', 'Content OK' ); + is( $response->content, '', 'Content OK' ); } #