From b9d3424ff4339ee7362d74ac2fa4a47e4bb0eaae Mon Sep 17 00:00:00 2001 From: Mark van den Broek Date: Thu, 23 Aug 2018 20:39:03 +0200 Subject: [PATCH] Fixes code style. --- tests/ContactTest.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 */