From 61eff5be0c10f7eda22756ea1911088a658c011e Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Thu, 5 May 2011 19:31:59 -0500 Subject: [PATCH] the default URL is /, not the empty string --- t/Asset/dispatch.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Asset/dispatch.t b/t/Asset/dispatch.t index 0b5c77f74..0189b2a3a 100644 --- a/t/Asset/dispatch.t +++ b/t/Asset/dispatch.t @@ -146,7 +146,7 @@ WebGUI::Test->interceptLogging(sub { func => 'dies', } ); is( $td->dispatch, "www_view", "if a query method dies, view is returned instead" ); - is $log_data->{warn}, "Couldn't call method www_dies on asset for url: Root cause: ...aside from that bullet\n", '.. and logged a warn'; + is $log_data->{warn}, "Couldn't call method www_dies on asset for url: / Root cause: ...aside from that bullet\n", '.. and logged a warn'; }); #vim:ft=perl