diff --git a/cake/tests/cases/libs/model/behaviors/containable.test.php b/cake/tests/cases/libs/model/behaviors/containable.test.php index 6cb8dbc2c..d3b27822a 100644 --- a/cake/tests/cases/libs/model/behaviors/containable.test.php +++ b/cake/tests/cases/libs/model/behaviors/containable.test.php @@ -3172,7 +3172,9 @@ class ContainableTest extends CakeTestCase { $this->assertTrue(Set::matches('/Comment[id=1]', $r)); } - function testOriginalAssociations() { + function testOriginalAssociations() { + $this->Article->Comment->Behaviors->attach('Containable'); + $options = array( 'conditions' => array( 'Comment.comment' => '!= Crazy', @@ -3267,4 +3269,4 @@ class ContainableTest extends CakeTestCase { } } -?> +?> \ No newline at end of file