1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00

Test assert bug fix

Co-authored-by: kodumbeats <brandon.leckemby@gmail.com>
This commit is contained in:
Matej Bačo 2021-09-23 08:50:47 +02:00 committed by GitHub
parent d43987fd7a
commit 8f1847f871
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -218,7 +218,7 @@ trait StorageBase
]);
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertGreaterThan(0, $response['body']['sum']);
$this->assertEquals(1, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
$this->assertGreaterThan(0, $response['body']['files']);
$this->assertEquals($data['fileId'], $response['body']['files'][0]['$id']);