From 186a87b51494d6975d44f04305a1b1bf799b583a Mon Sep 17 00:00:00 2001 From: the_undefined Date: Mon, 5 Jan 2009 16:15:10 +0000 Subject: [PATCH] Improved doc comment for greater clarity regarding attribute matching git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7971 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/tests/lib/cake_test_case.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/tests/lib/cake_test_case.php b/cake/tests/lib/cake_test_case.php index 53ab1e2f7..a780894aa 100644 --- a/cake/tests/lib/cake_test_case.php +++ b/cake/tests/lib/cake_test_case.php @@ -460,7 +460,7 @@ class CakeTestCase extends UnitTestCase { /** * Takes an array $expected and generates a regex from it to match the provided $string. Samples for $expected: * - * Checks for an input tag with a name attribute (contains any value) and an id attribute that contains 'my-input': + * Checks for an input tag with a name attribute (contains any non-empty value) and an id attribute that contains 'my-input': * array('input' => array('name', 'id' => 'my-input')) * * Checks for two p elements with some text in them: