mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Fix name of skip method for phpunit
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
b7d9e43e25
commit
db80ac02b0
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ class HelperTest extends \Test\TestCase {
|
|||
*/
|
||||
public function testSortByName(string $sort, bool $sortDescending, array $expectedOrder) {
|
||||
if (($sort === 'mtime') && (PHP_INT_SIZE < 8)) {
|
||||
$this->skip('Skip mtime sorting on 32bit');
|
||||
$this->markTestSkipped('Skip mtime sorting on 32bit');
|
||||
}
|
||||
$files = self::getTestFileList();
|
||||
$files = \OCA\Files\Helper::sortFiles($files, $sort, $sortDescending);
|
||||
|
|
|
|||
Loading…
Reference in a new issue