Skip to content

Commit 2dd7600

Browse files
Remove superfluous skip conditions
1 parent 68525fc commit 2dd7600

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

tests/tests/StaticAnalysis/CodeUnitFindingVisitorTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,6 @@ public function testHandlesFunctionOrMethodWithUnionTypes(): void
9898
);
9999
}
100100

101-
/**
102-
* @requires PHP 8.1
103-
*/
104101
public function testHandlesFunctionOrMethodWithIntersectionTypes(): void
105102
{
106103
$codeUnitFindingVisitor = $this->findCodeUnits(__DIR__ . '/../../_files/FunctionWithIntersectionTypes.php');

tests/tests/StaticAnalysis/ExecutableLinesFindingVisitorTest.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,16 @@ public function testExecutableLinesAreGroupedByBranch(): void
2828
$this->doTestSelfDescribingAsset(TEST_FILES_PATH . 'source_for_branched_exec_lines.php');
2929
}
3030

31-
/**
32-
* @requires PHP 7.4
33-
*/
3431
public function testExecutableLinesAreGroupedByBranchPhp74(): void
3532
{
3633
$this->doTestSelfDescribingAsset(TEST_FILES_PATH . 'source_for_branched_exec_lines_php74.php');
3734
}
3835

39-
/**
40-
* @requires PHP 8
41-
*/
4236
public function testExecutableLinesAreGroupedByBranchPhp80(): void
4337
{
4438
$this->doTestSelfDescribingAsset(TEST_FILES_PATH . 'source_for_branched_exec_lines_php80.php');
4539
}
4640

47-
/**
48-
* @requires PHP 8.1
49-
*/
5041
public function testExecutableLinesAreGroupedByBranchPhp81(): void
5142
{
5243
$this->doTestSelfDescribingAsset(TEST_FILES_PATH . 'source_for_branched_exec_lines_php81.php');

0 commit comments

Comments
 (0)