Skip to content

Commit ab384b8

Browse files
committed
test
1 parent 089a340 commit ab384b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/VCS/Base.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ public function testGetOwnerName(): void
5151

5252
public function testSearchRepositories(): void
5353
{
54-
$repos = $this->vcsAdapter->searchRepositories('test-kh', 1, 2);
54+
['items' => $repos, 'total' => $total] = $this->vcsAdapter->searchRepositories('test-kh', 1, 2);
5555
$this->assertCount(2, $repos);
56+
$this->assertSame(4, $total);
5657
}
5758

5859
public function testCreateComment(): void

0 commit comments

Comments
 (0)