Skip to content

Commit 7efa47c

Browse files
committed
whitespace
1 parent 20770b3 commit 7efa47c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Console/RunTestInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

src/Module/Nette.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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');

0 commit comments

Comments
 (0)