Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-02-05 20:12:17 +0400
committerArthur Schiwon <blizzz@owncloud.com>2014-02-10 17:53:59 +0400
commit3be50224ffdf328f78d598da7118ad6259c642e5 (patch)
tree60b2f09b729a1a952a1fdad250dd212da86b3c36 /tests
parent0213928735844737f611a90d5b416f9fe5123f1a (diff)
intendation
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/share/searchresultsorter.php10
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');