diff --git a/tests/wpunit/UndotTest.php b/tests/wpunit/UndotTest.php index eba1d1d..25218f2 100644 --- a/tests/wpunit/UndotTest.php +++ b/tests/wpunit/UndotTest.php @@ -27,15 +27,15 @@ public function it_properly_expands_array() ]; $expected = [ - 'one' => [ - 'two' => [ - 'three' => [ - 'five' => [ - 'eight' => 'fibonacci' - ] - ] - ] - ], + 'one' => [ + 'two' => [ + 'three' => [ + 'five' => [ + 'eight' => 'fibonacci' + ] + ] + ] + ], ]; $this->assertSame($expected, Arr::undot($dotted));