Skip to content

Commit ecffd8f

Browse files
committed
Fix GroupManager::normalizeFilePath
* Fix GroupManager::normalizeFilePath changes with GroupManager::checkIfFileExists argument change in 0e110ef. A line was missed in the change and caused errors.
1 parent 05512a4 commit ecffd8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Codeception/Lib/GroupManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private function normalizeFilePath($file, $group)
107107
return sprintf('%s:%s', realpath($fullPath), $pathParts[2]);
108108
}
109109

110-
$this->checkIfFileExists($file);
110+
$this->checkIfFileExists($file, $group);
111111
return realpath($file);
112112
} elseif (strpos($file, ':') === false) {
113113
$dirtyPath = Configuration::projectDir() . $file;

0 commit comments

Comments
 (0)