We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2db0ed7 commit eec6f58Copy full SHA for eec6f58
1 file changed
tests/system/CLI/CommandsTest.php
@@ -68,13 +68,16 @@ private function copyCommand(string $path): void
68
}
69
70
copy($path, APPPATH . 'Commands/' . basename($path));
71
+ clearstatcache(true);
72
73
74
private function deleteCommand(string $path): void
75
{
76
if (is_file(APPPATH . 'Commands/' . basename($path))) {
77
unlink(APPPATH . 'Commands/' . basename($path));
78
79
+
80
81
82
83
public function testRunOnUnknownCommand(): void
0 commit comments