Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
k0ka committed Jan 30, 2024
1 parent c8b197e commit 2a0446c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sample/ObjectStore/v1/ContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function testRead(Container $createdContainer)

$this->assertInstanceOf(Container::class, $container);
$this->assertEquals($createdContainer->name, $container->name);
$this->assertEquals($createdContainer->objectCount, $container->objectCount);
$this->assertEquals(0, $container->objectCount);
$this->assertEquals([], $container->metadata);
}

Expand Down

0 comments on commit 2a0446c

Please sign in to comment.