Skip to content

Commit 8db6d55

Browse files
committed
fixup! fix(carddav): IAddressBook::getKey() should return a string
1 parent 758f381 commit 8db6d55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/dav/tests/unit/CardDAV/AddressBookImplTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ protected function setUp(): void {
5353
}
5454

5555
public function testGetKey(): void {
56-
$this->assertSame($this->addressBookInfo['id'],
56+
$this->assertIsString($this->addressBookImpl->getKey());
57+
$this->assertSame((string)$this->addressBookInfo['id'],
5758
$this->addressBookImpl->getKey());
5859
}
5960

0 commit comments

Comments
 (0)