diff --git a/tests/UtilTest.php b/tests/UtilTest.php index bc4875a..566787f 100644 --- a/tests/UtilTest.php +++ b/tests/UtilTest.php @@ -49,11 +49,11 @@ public function testStudly() public function testArrayExcept() { $testArray = [ - 'first' => 'First', - 'second' => 'second', - 'third' => 'third', - 'fourth' => 'fourth', - ]; + 'first' => 'First', + 'second' => 'second', + 'third' => 'third', + 'fourth' => 'fourth', + ]; $this->assertArrayHasKey('first', $testArray); $this->assertArrayNotHasKey('first', Util::arrayExcept($testArray, ['first'])); $this->assertArrayNotHasKey('third', Util::arrayExcept($testArray, ['third']));