File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ public function __construct(InputDefinition $definition = NULL)
2222 if (isset ($ _SERVER ['argv ' ][1 ])) {
2323 $ filename = $ this ->normalizePath ($ _SERVER ['argv ' ][1 ]);
2424 $ cwd = $ this ->normalizePath (getcwd ()) . '/ ' ;
25-
25+
2626 // IDE always provides absolute path but Codeception only accepts relative path without leading "./".
2727 // If path is not absolute, make it that way and call realpath to remove "./".
2828 if (strpos ($ filename , $ cwd ) !== 0 && file_exists ($ cwd . $ filename )) {
2929 $ filename = $ this ->normalizePath (realpath ($ cwd . $ filename ));
3030 }
31-
31+
3232 if (!file_exists ($ filename )) {
3333 echo 'File " ' . $ filename . '" could not be found. ' ;
3434 exit ;
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ public function grabService($service)
109109 $ this ->fail ($ e ->getMessage ());
110110 }
111111 }
112-
112+
113113 public function seeRedirectTo ($ url )
114114 {
115115 $ response = $ this ->container ->getByType ('Nette\Http\IResponse ' );
You can’t perform that action at this time.
0 commit comments