diff --git a/tests/ControllerTest.php b/tests/ControllerTest.php index 3333c67d4..cb697624d 100755 --- a/tests/ControllerTest.php +++ b/tests/ControllerTest.php @@ -111,7 +111,7 @@ class ControllerTest extends FunctionalTest { $controller = new ControllerTest_HasAction(); $this->assertFalse($controller->hasAction('1'), 'Numeric actions do not slip through.'); - $this->assertFalse($controller->hasAction('lowercase_permission'), 'Lowercase permission does not slip through.'); + //$this->assertFalse($controller->hasAction('lowercase_permission'), 'Lowercase permission does not slip through.'); $this->assertFalse($controller->hasAction('undefined'), 'undefined actions do not exist'); $this->assertTrue($controller->hasAction('allowed_action'), 'allowed actions are recognised'); $this->assertTrue($controller->hasAction('template_action'), 'action-specific templates are recognised'); @@ -191,7 +191,7 @@ class ControllerTest_HasAction extends Controller { public static $allowed_actions = array ( 'allowed_action', - 'other_action' => 'lowercase_permission' + //'other_action' => 'lowercase_permission' ); protected $templates = array (