diff --git a/tests/CMText/RichContent/Common/ContactAddressTest.php b/tests/CMText/RichContent/Common/ContactAddressTest.php index 5faa5b9..2cae47f 100644 --- a/tests/CMText/RichContent/Common/ContactAddressTest.php +++ b/tests/CMText/RichContent/Common/ContactAddressTest.php @@ -32,7 +32,7 @@ public function test__construct() // full $this->assertInstanceOf( ContactAddress::class, - new ContactAddress('Breda', 'Netherlands', 'NL','Noord Brabant', 'Konijnenberg 30', ContactAddressTypes::WORK, '4825BD') + new ContactAddress('Breda', 'Netherlands', 'NL','Noord Brabant', 'Konijnenberg 24', ContactAddressTypes::WORK, '4825BD') ); } @@ -47,6 +47,6 @@ public function testAddressTypeException() { // unknown type $this->expectException(ContactAddressException::class); - new ContactAddress('Breda', 'Netherlands', 'NL', 'Noord Brabant', 'Konijnenberg 30', 'EXCEPTIONAL', '4825BD'); + new ContactAddress('Breda', 'Netherlands', 'NL', 'Noord Brabant', 'Konijnenberg 24', 'EXCEPTIONAL', '4825BD'); } } diff --git a/tests/RichMessageTest.php b/tests/RichMessageTest.php index e446f65..f9cfcad 100644 --- a/tests/RichMessageTest.php +++ b/tests/RichMessageTest.php @@ -228,7 +228,7 @@ public function testInitializeLocationPush() { $dynamicLocation = new \CMText\RichContent\Common\ViewLocationDynamic( 'CM HQ', - 'Konijnenberg 30, Breda' + 'Konijnenberg 24, Breda' ); $this->assertInstanceOf( diff --git a/tests/SuggestionsTest.php b/tests/SuggestionsTest.php index a0810bc..1e9c94c 100644 --- a/tests/SuggestionsTest.php +++ b/tests/SuggestionsTest.php @@ -181,7 +181,7 @@ public function testViewLocationSuggestion() 'test label', new \CMText\RichContent\Common\ViewLocationDynamic( 'CM HQ', - 'Konijnenberg 30, Breda', + 'Konijnenberg 24, Breda', 5 ) );