Skip to content

Commit 0f65d68

Browse files
committed
Fixed test values
1 parent c467885 commit 0f65d68

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/CMText/RichContent/Common/ContactAddressTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function test__construct()
3232
// full
3333
$this->assertInstanceOf(
3434
ContactAddress::class,
35-
new ContactAddress('Breda', 'Netherlands', 'NL','Noord Brabant', 'Konijnenberg 30', ContactAddressTypes::WORK, '4825BD')
35+
new ContactAddress('Breda', 'Netherlands', 'NL','Noord Brabant', 'Konijnenberg 24', ContactAddressTypes::WORK, '4825BD')
3636
);
3737
}
3838

@@ -47,6 +47,6 @@ public function testAddressTypeException()
4747
{
4848
// unknown type
4949
$this->expectException(ContactAddressException::class);
50-
new ContactAddress('Breda', 'Netherlands', 'NL', 'Noord Brabant', 'Konijnenberg 30', 'EXCEPTIONAL', '4825BD');
50+
new ContactAddress('Breda', 'Netherlands', 'NL', 'Noord Brabant', 'Konijnenberg 24', 'EXCEPTIONAL', '4825BD');
5151
}
5252
}

tests/RichMessageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public function testInitializeLocationPush()
228228
{
229229
$dynamicLocation = new \CMText\RichContent\Common\ViewLocationDynamic(
230230
'CM HQ',
231-
'Konijnenberg 30, Breda'
231+
'Konijnenberg 24, Breda'
232232
);
233233

234234
$this->assertInstanceOf(

tests/SuggestionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public function testViewLocationSuggestion()
181181
'test label',
182182
new \CMText\RichContent\Common\ViewLocationDynamic(
183183
'CM HQ',
184-
'Konijnenberg 30, Breda',
184+
'Konijnenberg 24, Breda',
185185
5
186186
)
187187
);

0 commit comments

Comments
 (0)