Skip to content

Commit

Permalink
php cs
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikbosch committed Feb 14, 2019
1 parent 6613172 commit 022fec4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Unit/AddressListTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ public function it_is_immutable()
$this->assertNotSame(
$addressList,
$addressList->withAddress(
new Address(new EmailAddress('[email protected]'), 'name')
new Address(new EmailAddress('[email protected]'), 'name')
)
);

$this->assertNotSame(
$addressList,
$addressList->withoutAddress(
new Address(new EmailAddress('[email protected]'), 'name')
new Address(new EmailAddress('[email protected]'), 'name')
)
);
}
Expand Down

0 comments on commit 022fec4

Please sign in to comment.