diff options
author | Robin Appelman <robin@icewind.nl> | 2022-04-13 16:05:45 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2022-08-16 13:54:26 +0200 |
commit | 1374cbee3e5d44ecec0a0784b3ab3a5afcc0d2ac (patch) | |
tree | c628e036930e72c11714c60b825cc38a4489e550 /tests/lib/Files/ObjectStore | |
parent | 5e375d9092efd1e40a0ed37dfd2c208598b27bb9 (diff) | |
download | nextcloud-server-1374cbee3e5d44ecec0a0784b3ab3a5afcc0d2ac.tar.gz nextcloud-server-1374cbee3e5d44ecec0a0784b3ab3a5afcc0d2ac.zip |
store unencrypted size in the unencrypted_size column
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'tests/lib/Files/ObjectStore')
-rw-r--r-- | tests/lib/Files/ObjectStore/S3Test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Files/ObjectStore/S3Test.php b/tests/lib/Files/ObjectStore/S3Test.php index a7a95d53375..fd451dc3c01 100644 --- a/tests/lib/Files/ObjectStore/S3Test.php +++ b/tests/lib/Files/ObjectStore/S3Test.php @@ -176,7 +176,7 @@ class S3Test extends ObjectStoreTest { // end of file reached fseek($result, $size); - self:self::assertTrue(feof($result)); + self::assertTrue(feof($result)); $this->assertNoUpload('testfilesizes'); } |