From 1fb37a5b73c4435e1906e2f217f93d3dc6314517 Mon Sep 17 00:00:00 2001 From: Marc van der Meulen Date: Tue, 12 Apr 2016 13:05:12 +0200 Subject: [PATCH] Fix styling --- tests/Support/SupportArrTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Support/SupportArrTest.php b/tests/Support/SupportArrTest.php index ea337d3fb194..919284059d35 100644 --- a/tests/Support/SupportArrTest.php +++ b/tests/Support/SupportArrTest.php @@ -458,7 +458,7 @@ public function testForget() // Does not work for nested keys $array = ['emails' => ['joe@example.com' => ['name' => 'Joe'], 'jane@localhost' => ['name' => 'Jane']]]; - Arr::forget($array, ['emails.joe@example.com','emails.jane@localhost']); + Arr::forget($array, ['emails.joe@example.com', 'emails.jane@localhost']); $this->assertEquals(['emails' => ['joe@example.com' => ['name' => 'Joe']]], $array); } }