Skip to content

Commit

Permalink
Fix fixture file path
Browse files Browse the repository at this point in the history
Fix fixture file path

Fix fixture file path
  • Loading branch information
Akanksha Singh authored and Akanksha Singh committed Oct 17, 2022
1 parent 4e4d337 commit 8975498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Homarus/tests/HomarusControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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]
);
Expand Down

0 comments on commit 8975498

Please sign in to comment.