fixed test break.

This commit is contained in:
Qiang Xue
2013-11-19 10:43:30 -05:00
parent 0833fe2e40
commit dd97c002a6

View File

@ -355,7 +355,7 @@ class Sort extends Object
$definition = $this->attributes[$attribute]; $definition = $this->attributes[$attribute];
$directions = $this->getAttributeOrders(); $directions = $this->getAttributeOrders();
if (isset($directions[$attribute])) { if (isset($directions[$attribute])) {
$descending = $directions[$attribute] === SORT_DESC; $descending = $directions[$attribute] !== SORT_DESC;
unset($directions[$attribute]); unset($directions[$attribute]);
} else { } else {
$descending = isset($definition['default']) && $definition['default'] === SORT_DESC; $descending = isset($definition['default']) && $definition['default'] === SORT_DESC;