diff --git a/tests/Support/SupportArrTest.php b/tests/Support/SupportArrTest.php index 01e6b1bd6ad4..158fcf1b8e5e 100644 --- a/tests/Support/SupportArrTest.php +++ b/tests/Support/SupportArrTest.php @@ -215,8 +215,6 @@ public function testHas() { $array = ['products.desk' => ['price' => 100]]; $this->assertTrue(Arr::has($array, 'products.desk')); - $this->assertTrue(Arr::has($array, ['products.desk'])); - $this->assertFalse(Arr::has($array, ['products.desk', 'missing'])); $array = ['products' => ['desk' => ['price' => 100]]]; $this->assertTrue(Arr::has($array, 'products.desk'));