From c52c636309437c260404c97ed03d81195fca4577 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 24 Sep 2023 21:55:54 +0000 Subject: [PATCH] fix test --- Helper/ModuleTestTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helper/ModuleTestTrait.php b/Helper/ModuleTestTrait.php index 1d2d27c..7d316df 100644 --- a/Helper/ModuleTestTrait.php +++ b/Helper/ModuleTestTrait.php @@ -384,7 +384,7 @@ trait ModuleTestTrait */ public function testJson() : void { - $sampleInfo = \json_decode(\file_get_contents(__DIR__ . '/../TestModule/info.json'), true); + $sampleInfo = \json_decode(\file_get_contents(__DIR__ . '/../../Modules/TestModule/info.json'), true); $infoTemplate = \json_decode(\file_get_contents(__DIR__ . '/../../phpOMS/Module/infoLayout.json'), true); $module = $this->app->moduleManager->get(self::NAME);