diff options
-rw-r--r-- | tests/lib/share/searchresultsorter.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/lib/share/searchresultsorter.php b/tests/lib/share/searchresultsorter.php index efc3e1b7aa3..eaf93400a7d 100644 --- a/tests/lib/share/searchresultsorter.php +++ b/tests/lib/share/searchresultsorter.php @@ -25,11 +25,11 @@ class Test_Share_Search extends \PHPUnit_Framework_TestCase { $sorter = new \OC\Share\SearchResultSorter($search, 'foobar'); $result = array( - array('foobar' => 'woot'), - array('foobar' => 'linux'), - array('foobar' => 'Linus'), - array('foobar' => 'Bicyclerepairwoman'), - ); + array('foobar' => 'woot'), + array('foobar' => 'linux'), + array('foobar' => 'Linus'), + array('foobar' => 'Bicyclerepairwoman'), + ); usort($result, array($sorter, 'sort')); $this->assertTrue($result[0]['foobar'] === 'Linus'); |