From 78501e389e75faf3320db3abd184d9cebc88dca4 Mon Sep 17 00:00:00 2001 From: Akanksha Singh Date: Mon, 17 Oct 2022 21:08:16 +0530 Subject: [PATCH] Fix fixture file path Fix fixture file path --- Homarus/tests/HomarusControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Homarus/tests/HomarusControllerTest.php b/Homarus/tests/HomarusControllerTest.php index b9572be2..5e16aff3 100644 --- a/Homarus/tests/HomarusControllerTest.php +++ b/Homarus/tests/HomarusControllerTest.php @@ -225,7 +225,7 @@ private function getDefaultController() $controller->method('generateDerivativeResponse') ->will($this->returnCallback(function ($cmd_string, $source, $path, $content_type) { return new BinaryFileResponse( - __DIR__ . "/../../../fixtures/foo.mp4", + __DIR__ . "/../fixtures/foo.mp4", 200, ['Content-Type' => $content_type] );