diff --git a/tests/ContactTest.php b/tests/ContactTest.php index 35c433c..2102a14 100644 --- a/tests/ContactTest.php +++ b/tests/ContactTest.php @@ -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"', 'john@example.com', 'hash'); - $this->assertEquals('John', $c->name); - $this->assertEquals('John ', $c->full); + $c = new Contact('"John"', 'john@example.com', 'hash'); + $this->assertEquals('John', $c->name); + $this->assertEquals('John ', $c->full); - $c = new Contact("'John'", 'john@example.com', 'hash'); - $this->assertEquals('John', $c->name); - $this->assertEquals('John ', $c->full); + $c = new Contact("'John'", 'john@example.com', 'hash'); + $this->assertEquals('John', $c->name); + $this->assertEquals('John ', $c->full); } /** @test */