Skip to content

Commit e9a1ee2

Browse files
committed
fixed phpunit.xml.dist
1 parent 88b8996 commit e9a1ee2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
max-parallel: 10
1616
matrix:
1717
php: [ '8.0', '8.1', '8.2']
18-
sf_version: [ '5.4.*', '6.2.*', '6.3.*' ]
18+
sf_version: [ '5.4.*', '6.0.*', '6.3.*' ]
1919
exclude:
2020
- php: 8.0
2121
sf_version: 6.2.*

Diff for: phpunit.xml.dist

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
33
<testsuites>
44
<testsuite name="Unit tests">
5-
<directory suffix="Test.php">./Tests/Unit</directory>
5+
<directory suffix="Test.php">./tests/Unit</directory>
66
</testsuite>
77
<testsuite name="Functional tests">
8-
<directory suffix="Test.php">./Tests/Functional</directory>
8+
<directory suffix="Test.php">./tests/Functional</directory>
99
</testsuite>
1010
</testsuites>
1111
<php>

0 commit comments

Comments
 (0)