[Jifty-commit] r6570 - in jifty/trunk: t/TestApp/lib/TestApp

Jifty commits jifty-commit at lists.jifty.org
Mon Mar 9 14:06:38 EDT 2009


Author: alexmv
Date: Mon Mar  9 14:06:38 2009
New Revision: 6570

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/t/TestApp/lib/TestApp/Dispatcher.pm

Log:
 r43085 at kohr-ah:  chmrr | 2009-03-09 14:06:29 -0400
  * Add some missing semicolons -- not necessary, but cleaner


Modified: jifty/trunk/t/TestApp/lib/TestApp/Dispatcher.pm
==============================================================================
--- jifty/trunk/t/TestApp/lib/TestApp/Dispatcher.pm	(original)
+++ jifty/trunk/t/TestApp/lib/TestApp/Dispatcher.pm	Mon Mar  9 14:06:38 2009
@@ -2,14 +2,14 @@
 use Jifty::Dispatcher -base;
 
 under '/' => run {
-}
+};
 
 on '/' => run {
     # shouldn't ever run because 02-dispatch.t doesn't request the root
     # demonstrates bad interaction between under '/' and on '/' and 
     # the condition cache in the dispatcher
     set phantom => 99;
-}
+};
 
 before '/redirect' => run {
     Jifty->web->request->add_action(


More information about the Jifty-commit mailing list