From 9e8523fcf1570cde00550d599b2363c28b9f5a74 Mon Sep 17 00:00:00 2001 From: Mateusz Uzdowski Date: Wed, 21 Apr 2010 04:48:03 +0000 Subject: [PATCH] REVERT: checked in not-yet-ready code by mistake, reverting git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@103251 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tests/ControllerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 (