summaryrefslogtreecommitdiff
path: root/tests/unit/Web
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-05-21 21:26:33 +0000
committerctrlaltca@gmail.com <>2011-05-21 21:26:33 +0000
commitb6ec303f50cfa233374d12b06a539025da70e303 (patch)
tree171b7488e0261dd805435f177953f5157948979d /tests/unit/Web
parentc266d79c8370a536c9ccd0e9f0506ed65a22b9fe (diff)
up-ported to trunk/ unit tests fixes from r2921
Diffstat (limited to 'tests/unit/Web')
-rw-r--r--tests/unit/Web/UI/WebControls/TDropDownListTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Web/UI/WebControls/TDropDownListTest.php b/tests/unit/Web/UI/WebControls/TDropDownListTest.php
index 3db425b9..98ff1dd2 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;
@@ -27,4 +27,4 @@ class TDropDownListTest extends PHPUnit_Framework_TestCase {
}
}
-?> \ No newline at end of file
+?>