Skip to content

Commit

Permalink
Fixes code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Aug 23, 2018
1 parent c3f204c commit b9d3424
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/ContactTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ public function email_address_with_non_allowed_prefix_is_stripped_off()
/** @test */
public function a_quoted_name_should_be_unquoted()
{
$c = new Contact('"John"', '[email protected]', 'hash');
$this->assertEquals('John', $c->name);
$this->assertEquals('John <[email protected]>', $c->full);
$c = new Contact('"John"', '[email protected]', 'hash');
$this->assertEquals('John', $c->name);
$this->assertEquals('John <[email protected]>', $c->full);

$c = new Contact("'John'", '[email protected]', 'hash');
$this->assertEquals('John', $c->name);
$this->assertEquals('John <[email protected]>', $c->full);
$c = new Contact("'John'", '[email protected]', 'hash');
$this->assertEquals('John', $c->name);
$this->assertEquals('John <[email protected]>', $c->full);
}

/** @test */
Expand Down

0 comments on commit b9d3424

Please sign in to comment.