Updated the expectations of the two failing tests. Both pass now. Fixes #4600

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6872 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mark_story 2008-05-15 00:56:08 +00:00
parent b489bb1470
commit a8728246db

View file

@ -147,12 +147,10 @@ class AclNodeTest extends CakeTestCase {
$this->assertEqual($result, $expected);
$result = Set::extract($Aco->node('Controller2/action3'), '{n}.DbAcoTest.id');
$expected = array(6, 1);
$this->assertEqual($result, $expected);
$this->assertFalse($result);
$result = Set::extract($Aco->node('Controller2/action3/record5'), '{n}.DbAcoTest.id');
$expected = array(6, 1);
$this->assertEqual($result, $expected);
$this->assertFalse($result);
}
function testNodeAliasParenting() {
@ -175,5 +173,4 @@ class AclNodeTest extends CakeTestCase {
$this->assertEqual($result, $expected);
}
}
?>