From a94f242910916de16c4f55bd0c0d29414c8747da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 15 Feb 2022 15:46:31 +0100 Subject: [PATCH] getPrefix -> getPathPrefix --- tests/BootstrapperTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/BootstrapperTest.php b/tests/BootstrapperTest.php index ca968d65..7bbbcdaa 100644 --- a/tests/BootstrapperTest.php +++ b/tests/BootstrapperTest.php @@ -208,7 +208,7 @@ class BootstrapperTest extends TestCase $adapter = $disk->getAdapter(); if (! Str::startsWith(app()->version(), '9.')) { - return $adapter->getPrefix(); + return $adapter->getPathPrefix(); } $prefixer = (new ReflectionObject($adapter))->getProperty('prefixer');