From bfbc121b059204d2738e595d10cc635919cc0474 Mon Sep 17 00:00:00 2001 From: Jesper Noordsij <45041769+jnoordsij@users.noreply.github.com> Date: Mon, 4 Mar 2024 14:15:50 +0100 Subject: [PATCH] Remove duplicated assertion in SupportArrTest --- tests/Support/SupportArrTest.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/Support/SupportArrTest.php b/tests/Support/SupportArrTest.php index 206dc0fe3102..dc93ae6d1e9c 100644 --- a/tests/Support/SupportArrTest.php +++ b/tests/Support/SupportArrTest.php @@ -921,11 +921,6 @@ public function testShuffleActuallyShuffles() { $input = range('a', 'z'); - $this->assertFalse( - Arr::shuffle($input) === Arr::shuffle($input) && Arr::shuffle($input) === Arr::shuffle($input), - "The shuffles produced the same output each time, which shouldn't happen." - ); - $this->assertFalse( Arr::shuffle($input) === $input && Arr::shuffle($input) === $input, "The shuffles were unshuffled each time, which shouldn't happen."