intendation

This commit is contained in:
Arthur Schiwon 2014-02-05 17:12:17 +01:00
parent af781bdea7
commit 72f134cfce
1 changed files with 5 additions and 5 deletions

View File

@ -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');