diff options
author | Joas Schilling <coding@schilljs.com> | 2025-05-12 16:17:59 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-05-15 08:21:22 +0200 |
commit | 5283e9a5e2a6ac8627cef854d9534cccce81bdd2 (patch) | |
tree | 46a085c343c3d6784e96cf775ebf6c7e808c3620 /tests/lib/Files/ObjectStore/S3Test.php | |
parent | 53b116b8a54ec7606441e35b7e6c8697a704c5a4 (diff) | |
download | nextcloud-server-5283e9a5e2a6ac8627cef854d9534cccce81bdd2.tar.gz nextcloud-server-5283e9a5e2a6ac8627cef854d9534cccce81bdd2.zip |
test: Cleanup tests/lib/Files/*
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/Files/ObjectStore/S3Test.php')
-rw-r--r-- | tests/lib/Files/ObjectStore/S3Test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Files/ObjectStore/S3Test.php b/tests/lib/Files/ObjectStore/S3Test.php index 1501f575f9a..76fc80c975f 100644 --- a/tests/lib/Files/ObjectStore/S3Test.php +++ b/tests/lib/Files/ObjectStore/S3Test.php @@ -44,7 +44,7 @@ class NonSeekableStream extends Wrapper { /** * @group PRIMARY-s3 */ -class S3Test extends ObjectStoreTest { +class S3Test extends ObjectStoreTestCase { public function setUp(): void { parent::setUp(); $s3 = $this->getInstance(); @@ -126,7 +126,7 @@ class S3Test extends ObjectStoreTest { } /** File size to upload in bytes */ - public function dataFileSizes() { + public static function dataFileSizes(): array { return [ [1000000], [2000000], [5242879], [5242880], [5242881], [10000000] ]; |