1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00

Fix test assert bug

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

View file

@ -205,7 +205,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->assertCount(1, $response['body']['files']);
$this->assertEquals('logo.png', $response['body']['files'][0]['name']);