From e61e0c9c58bbc9c6082613e44778c9e9117b73f2 Mon Sep 17 00:00:00 2001 From: Fabio Ivona Date: Tue, 11 Jan 2022 15:44:26 +0100 Subject: [PATCH] test fix --- tests/Feature/S3Integration/S3TestPathGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/S3Integration/S3TestPathGenerator.php b/tests/Feature/S3Integration/S3TestPathGenerator.php index d3edca0ad..b77822097 100644 --- a/tests/Feature/S3Integration/S3TestPathGenerator.php +++ b/tests/Feature/S3Integration/S3TestPathGenerator.php @@ -33,6 +33,6 @@ public function getPathForResponsiveImages(Media $media): string */ protected function getBasePath(Media $media): string { - return (S3IntegrationTest::getS3BaseTestDirectory()).'/'.$media->getKey(); + return (getS3BaseTestDirectory()).'/'.$media->getKey(); } }