diff options
author | ctrlaltca@gmail.com <> | 2011-05-21 21:18:26 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-05-21 21:18:26 +0000 |
commit | 948a32434d4e72765dd26c803e94129b5c2f7769 (patch) | |
tree | b035f1ad598c56dd97774d2c09448a8a9de06eec /tests/unit/Web/UI/WebControls | |
parent | 5eeeeeb96db991f0500881190e321aba8efc8891 (diff) |
fixed unix tests, bumped version number
Diffstat (limited to 'tests/unit/Web/UI/WebControls')
-rw-r--r-- | tests/unit/Web/UI/WebControls/TDropDownListTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/Web/UI/WebControls/TDropDownListTest.php b/tests/unit/Web/UI/WebControls/TDropDownListTest.php index 3db425b9..1fb73faf 100644 --- a/tests/unit/Web/UI/WebControls/TDropDownListTest.php +++ b/tests/unit/Web/UI/WebControls/TDropDownListTest.php @@ -15,7 +15,7 @@ class TDropDownListTest extends PHPUnit_Framework_TestCase { 'c' => 3); $list->setDataSource($data); $list->dataBind(); - $items =& $list->getItems(); + $items = $list->getItems(); $this->assertTrue($items instanceof TListItemCollection); $expected_keys = array_keys($data); $i = 0; |