Skip to content

Commit 041dde7

Browse files
committed
Fix path
1 parent d0a1bf1 commit 041dde7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/www/RouterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function testSyntax()
2626
foreach ($files as $file) {
2727
if (preg_match('/.(yml|yaml)$/', $file)) {
2828
try {
29-
$value = $yaml->parse(file_get_contents('../../modules/'.$module.'/'.$file));
29+
$value = $yaml->parse(file_get_contents('modules/'.$module.'/'.$file));
3030
$this->addToAssertionCount(1);
3131
} catch (\ParseException $e) {
3232
$this->fail($e->getMessage().' in '.$e->getFile().':'.$e->getLine());

0 commit comments

Comments
 (0)