Skip to content

Commit 610984b

Browse files
committed
Fix E2E tests
1 parent 85c709d commit 610984b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,25 +190,25 @@ jobs:
190190
OUTPUT=$(../bashunit -a exit_code "1" "../../bin/phpstan analyse -c ignore.neon")
191191
echo "$OUTPUT"
192192
../bashunit -a contains 'Invalid entry in ignoreErrors' "$OUTPUT"
193-
../bashunit -a contains 'tests is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
193+
../bashunit -a contains '"tests" is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
194194
- script: |
195195
cd e2e/bad-exclude-paths
196196
OUTPUT=$(../bashunit -a exit_code "1" "../../bin/phpstan analyse -c phpneon.php")
197197
echo "$OUTPUT"
198198
../bashunit -a contains 'Invalid entry in ignoreErrors' "$OUTPUT"
199-
../bashunit -a contains 'src/test.php is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
199+
../bashunit -a contains '"src/test.php" is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
200200
- script: |
201201
cd e2e/bad-exclude-paths
202202
OUTPUT=$(../bashunit -a exit_code "1" "../../bin/phpstan analyse -c excludePaths.neon")
203203
echo "$OUTPUT"
204204
../bashunit -a contains 'Invalid entry in excludePaths' "$OUTPUT"
205-
../bashunit -a contains 'tests is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
205+
../bashunit -a contains '"tests" is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
206206
- script: |
207207
cd e2e/bad-exclude-paths
208208
OUTPUT=$(../bashunit -a exit_code "1" "../../bin/phpstan analyse -c phpneon2.php")
209209
echo "$OUTPUT"
210210
../bashunit -a contains 'Invalid entry in excludePaths' "$OUTPUT"
211-
../bashunit -a contains 'src/test.php is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
211+
../bashunit -a contains '"src/test.php" is neither a directory, nor a file path, nor a fnmatch pattern.' "$OUTPUT"
212212
- script: |
213213
cd e2e/bad-exclude-paths
214214
OUTPUT=$(../../bin/phpstan analyse -c ignoreNonexistentExcludePath.neon)

0 commit comments

Comments
 (0)