Skip to content

Commit f09d7dd

Browse files
committed
fix tests
1 parent 54fb8f0 commit f09d7dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Unit/PhpCsFixerConfigTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public function testGetValanticRules(): void
2121

2222
$this->assertNotEmpty($rules);
2323

24-
$this->assertArrayHasKey('@PER-CS2.0', $rules);
25-
$this->assertArrayHasKey('@PER-CS2.0:risky', $rules);
24+
$this->assertArrayHasKey('@PER-CS3.0', $rules);
25+
$this->assertArrayHasKey('@PER-CS3.0:risky', $rules);
2626
$this->assertArrayHasKey('@Symfony', $rules);
2727
$this->assertArrayHasKey('@Symfony:risky', $rules);
2828
$this->assertArrayHasKey('array_push', $rules);
@@ -61,8 +61,8 @@ public function testCreateValanticConfig(): void
6161
$this->assertNotEmpty($rules);
6262

6363
// Check that basic rules are included
64-
$this->assertArrayHasKey('@PER-CS2.0', $rules);
65-
$this->assertArrayHasKey('@PER-CS2.0:risky', $rules);
64+
$this->assertArrayHasKey('@PER-CS3.0', $rules);
65+
$this->assertArrayHasKey('@PER-CS3.0:risky', $rules);
6666
$this->assertArrayHasKey('@Symfony', $rules);
6767
$this->assertArrayHasKey('@Symfony:risky', $rules);
6868

0 commit comments

Comments
 (0)