Skip to content

Commit 3e582f9

Browse files
committed
Rename test
1 parent 81a8d34 commit 3e582f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/PHPStan/Rules/Properties/AccessPropertiesRuleTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,12 +1096,12 @@ public function testDiscussion13274(): void
10961096
$this->analyse([__DIR__ . '/data/discussion-13274.php'], []);
10971097
}
10981098

1099-
public function testBug4117(): void
1099+
public function testBug13271(): void
11001100
{
11011101
$this->checkThisOnly = false;
11021102
$this->checkUnionTypes = true;
11031103
$this->checkDynamicProperties = true;
1104-
$this->analyse([__DIR__ . '/data/bug-4117.php'], []);
1104+
$this->analyse([__DIR__ . '/data/bug-13271.php'], []);
11051105
}
11061106

11071107
}

tests/PHPStan/Rules/Properties/data/bug-4117.php renamed to tests/PHPStan/Rules/Properties/data/bug-13271.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Bug4117;
5+
namespace Bug13271;
66

77
function (): void {
88
$object = new class{

0 commit comments

Comments
 (0)