diff options
author | xue <> | 2006-04-07 15:25:07 +0000 |
---|---|---|
committer | xue <> | 2006-04-07 15:25:07 +0000 |
commit | c324241bd722e2eb3488c9fb5a467882b7040435 (patch) | |
tree | 77af40f332bfad3d95736058565982ea4717889b /tests/FunctionalTests/quickstart/Controls/ListBoxTestCase.php | |
parent | 370c682479edb2fd3f40ee701f7bb4ef088e8283 (diff) |
List controls now use array keys as list item values even if the array is integer-indexed
Diffstat (limited to 'tests/FunctionalTests/quickstart/Controls/ListBoxTestCase.php')
-rw-r--r-- | tests/FunctionalTests/quickstart/Controls/ListBoxTestCase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/FunctionalTests/quickstart/Controls/ListBoxTestCase.php b/tests/FunctionalTests/quickstart/Controls/ListBoxTestCase.php index 9862d1d1..c031c5fd 100644 --- a/tests/FunctionalTests/quickstart/Controls/ListBoxTestCase.php +++ b/tests/FunctionalTests/quickstart/Controls/ListBoxTestCase.php @@ -52,7 +52,7 @@ class ListBoxTestCase extends SeleniumTestCase // Databind to an integer-indexed array
$this->selectAndWait("ctl0\$body\$DBListBox1[]", "label=item 3");
- $this->verifyTextPresent("Your selection is: (Index: 2, Value: item 3, Text: item 3)", "");
+ $this->verifyTextPresent("Your selection is: (Index: 2, Value: 2, Text: item 3)", "");
// Databind to an associative array
$this->selectAndWait("ctl0\$body\$DBListBox2[]", "label=item 2");
|