diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-23 15:03:56 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-02-07 11:23:31 +0100 |
commit | cd885b57057b506169faf8ac455f5b1fba811bbf (patch) | |
tree | b7993a9756bed4c697b24d6070d043b3c1cffed1 /apps/dav/tests | |
parent | 5c1a0e0307408b9f9031b40beaadaa9f45732c84 (diff) | |
download | nextcloud-server-cd885b57057b506169faf8ac455f5b1fba811bbf.tar.gz nextcloud-server-cd885b57057b506169faf8ac455f5b1fba811bbf.zip |
Type sizes as int|float throughout the code base
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/dav/tests')
-rw-r--r-- | apps/dav/tests/unit/Connector/Sabre/FilesReportPluginTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/FilesReportPluginTest.php b/apps/dav/tests/unit/Connector/Sabre/FilesReportPluginTest.php index d38031b03d4..3119d715bec 100644 --- a/apps/dav/tests/unit/Connector/Sabre/FilesReportPluginTest.php +++ b/apps/dav/tests/unit/Connector/Sabre/FilesReportPluginTest.php @@ -261,6 +261,8 @@ class FilesReportPluginTest extends \Test\TestCase { $filesNode2 = $this->getMockBuilder(File::class) ->disableOriginalConstructor() ->getMock(); + $filesNode2->method('getSize') + ->willReturn(10); $this->userFolder->expects($this->exactly(2)) ->method('getById') |