From 4d9865e8803c3e4477c1332cc34eff2e3b715999 Mon Sep 17 00:00:00 2001 From: SonyPradana Date: Wed, 25 Sep 2024 12:53:35 +0700 Subject: [PATCH] fix back slash meter --- tests/Integrate/Testing/TestCaseTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integrate/Testing/TestCaseTest.php b/tests/Integrate/Testing/TestCaseTest.php index f00c62ea..6fc586f1 100644 --- a/tests/Integrate/Testing/TestCaseTest.php +++ b/tests/Integrate/Testing/TestCaseTest.php @@ -12,7 +12,7 @@ final class TestCaseTest extends TestCase { protected function setUp(): void { - require_once dirname(__DIR__) . '\Bootstrap\RegisterProvidersTest.php'; + require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'Bootstrap' . DIRECTORY_SEPARATOR . 'RegisterProvidersTest.php'; $this->app = new Application(dirname(__DIR__) . '/assets/app2'); $this->app->set(Karnel::class, fn () => new Karnel($this->app));