Skip to content

Commit 2f0bfd7

Browse files
committed
Fix path and expectation
1 parent 3b7219b commit 2f0bfd7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

phpstan.neon.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ parameters:
1313
- vendor/behat/behat
1414
scanFiles:
1515
- tests/phpstan/scan-files.php
16-
- tests/util/behat-tags.php
16+
- util/behat-tags.php
1717
treatPhpDocTypesAsCertain: false
1818
dynamicConstantNames:
1919
- WP_DEBUG

tests/tests/TestBehatTags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public function test_behat_tags_db_version(): void {
221221
$contents = "@require-mysql-$minimum_db_version";
222222
$expecteds[] = '~@require-mariadb';
223223
$expecteds[] = '~@require-sqlite';
224-
$expecteds[] = "@require-mysql-$minimum_db_version";
224+
$expecteds[] = "~@require-mysql-$minimum_db_version";
225225
break;
226226
}
227227

0 commit comments

Comments
 (0)