diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-09-30 12:48:15 +0200 |
---|---|---|
committer | Côme Chilliet (Rebase PR Action) <come-nc@users.noreply.github.com> | 2022-09-30 13:20:04 +0000 |
commit | 4123eeeaa3bbd3ecf7d78c42907d4bce024aaae8 (patch) | |
tree | 095af3c62d96faaac78d15ab7a0930dbce75c571 /tests/lib/ContactsManagerTest.php | |
parent | 5347fb02dca9f55d44392d15e1c1a020d5912240 (diff) | |
download | nextcloud-server-4123eeeaa3bbd3ecf7d78c42907d4bce024aaae8.tar.gz nextcloud-server-4123eeeaa3bbd3ecf7d78c42907d4bce024aaae8.zip |
Fix ContactsManagerTest test
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests/lib/ContactsManagerTest.php')
-rw-r--r-- | tests/lib/ContactsManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/ContactsManagerTest.php b/tests/lib/ContactsManagerTest.php index bc822214f26..c02a95a4162 100644 --- a/tests/lib/ContactsManagerTest.php +++ b/tests/lib/ContactsManagerTest.php @@ -235,6 +235,6 @@ class ContactsManagerTest extends \Test\TestCase { $all_books = $this->cm->getUserAddressBooks(); $this->assertEquals(1, count($all_books)); - $this->assertEquals('A very simple Addressbook', $all_books['SIMPLE_ADDRESS_BOOK']); + $this->assertEquals($addressbook, $all_books['SIMPLE_ADDRESS_BOOK']); } } |