Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/CMText/RichContent/Common/ContactAddressTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
);
}

Expand All @@ -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');
}
}
2 changes: 1 addition & 1 deletion tests/RichMessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public function testInitializeLocationPush()
{
$dynamicLocation = new \CMText\RichContent\Common\ViewLocationDynamic(
'CM HQ',
'Konijnenberg 30, Breda'
'Konijnenberg 24, Breda'
);

$this->assertInstanceOf(
Expand Down
2 changes: 1 addition & 1 deletion tests/SuggestionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public function testViewLocationSuggestion()
'test label',
new \CMText\RichContent\Common\ViewLocationDynamic(
'CM HQ',
'Konijnenberg 30, Breda',
'Konijnenberg 24, Breda',
5
)
);
Expand Down