We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a6e4a8 commit 0bb5d4aCopy full SHA for 0bb5d4a
Tests/Command/XliffLintCommandTest.php
@@ -121,9 +121,9 @@ protected function tearDown(): void
121
{
122
foreach ($this->files as $file) {
123
if (file_exists($file)) {
124
- unlink($file);
+ @unlink($file);
125
}
126
127
- rmdir(sys_get_temp_dir().'/xliff-lint-test');
+ @rmdir(sys_get_temp_dir().'/xliff-lint-test');
128
129
Tests/Command/YamlLintCommandTest.php
@@ -168,9 +168,9 @@ protected function tearDown(): void
168
169
170
171
172
173
174
- rmdir(sys_get_temp_dir().'/yml-lint-test');
+ @rmdir(sys_get_temp_dir().'/yml-lint-test');
175
176
0 commit comments