aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/Cache/ScannerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Files/Cache/ScannerTest.php')
-rw-r--r--tests/lib/Files/Cache/ScannerTest.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/lib/Files/Cache/ScannerTest.php b/tests/lib/Files/Cache/ScannerTest.php
index 0f5335f4416..6a025410cc3 100644
--- a/tests/lib/Files/Cache/ScannerTest.php
+++ b/tests/lib/Files/Cache/ScannerTest.php
@@ -33,7 +33,7 @@ class ScannerTest extends \Test\TestCase {
*/
private $cache;
- protected function setUp() {
+ protected function setUp(): void {
parent::setUp();
$this->storage = new \OC\Files\Storage\Temporary(array());
@@ -41,7 +41,7 @@ class ScannerTest extends \Test\TestCase {
$this->cache = new \OC\Files\Cache\Cache($this->storage);
}
- protected function tearDown() {
+ protected function tearDown(): void {
if ($this->cache) {
$this->cache->clear();
}
@@ -250,8 +250,8 @@ class ScannerTest extends \Test\TestCase {
$this->cache->put('folder', array('mtime' => $this->storage->filemtime('folder'), 'storage_mtime' => $this->storage->filemtime('folder')));
$this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_SIZE);
$newData = $this->cache->get('');
- $this->assertInternalType('string', $oldData['etag']);
- $this->assertInternalType('string', $newData['etag']);
+ $this->assertIsString($oldData['etag']);
+ $this->assertIsString($newData['etag']);
$this->assertNotSame($oldData['etag'], $newData['etag']);
$this->assertEquals($oldData['size'], $newData['size']);
@@ -320,11 +320,11 @@ class ScannerTest extends \Test\TestCase {
$this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_ETAG);
/** @var CacheEntry $data0 */
$data0 = $this->cache->get('folder/bar.txt');
- $this->assertInternalType('string', $data0['etag']);
+ $this->assertIsString($data0['etag']);
$data1 = $this->cache->get('folder');
- $this->assertInternalType('string', $data1['etag']);
+ $this->assertIsString($data1['etag']);
$data2 = $this->cache->get('');
- $this->assertInternalType('string', $data2['etag']);
+ $this->assertIsString($data2['etag']);
$data0['etag'] = '';
$this->cache->put('folder/bar.txt', $data0->getData());
@@ -333,7 +333,7 @@ class ScannerTest extends \Test\TestCase {
// verify cache content
$newData0 = $this->cache->get('folder/bar.txt');
- $this->assertInternalType('string', $newData0['etag']);
+ $this->assertIsString($newData0['etag']);
$this->assertNotEmpty($newData0['etag']);
}