From 08f0c76219596de2e04b2c3da3010a9065957869 Mon Sep 17 00:00:00 2001 From: vlakoff <544424+vlakoff@users.noreply.github.com> Date: Sun, 16 Nov 2025 17:17:16 +0100 Subject: [PATCH] test: remove leftover useless code in BitArrayTest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As discussed in PR #208, lines 114–116 in BitArrayTest.php are useless and appear to be leftover code. They do not exist in the source test logic and can safely be removed. --- test/Common/BitArrayTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/Common/BitArrayTest.php b/test/Common/BitArrayTest.php index 75e3b28..04a97d9 100644 --- a/test/Common/BitArrayTest.php +++ b/test/Common/BitArrayTest.php @@ -111,10 +111,6 @@ public function testGetNextSet5() : void $actual = $array->getNextSet($query); - if ($actual !== $expected) { - $array->getNextSet($query); - } - $this->assertEquals($expected, $actual); } }