From 6e86b38eaf8557d2ba4761d2c89098ec3dda5e90 Mon Sep 17 00:00:00 2001 From: Moslem Deris Date: Wed, 17 Nov 2021 01:52:36 +0330 Subject: [PATCH] Fix the path of test oauth keys --- .../AppSection/Authentication/UI/API/Tests/ApiTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Containers/AppSection/Authentication/UI/API/Tests/ApiTestCase.php b/app/Containers/AppSection/Authentication/UI/API/Tests/ApiTestCase.php index 867e9dce2..542d6c857 100644 --- a/app/Containers/AppSection/Authentication/UI/API/Tests/ApiTestCase.php +++ b/app/Containers/AppSection/Authentication/UI/API/Tests/ApiTestCase.php @@ -51,7 +51,7 @@ private function createTestingKey($fileName): string $filePath = storage_path($fileName); if (!file_exists($filePath)) { - $keysStubDirectory = __DIR__ . '/Stubs/'; + $keysStubDirectory = __DIR__ . '/Functional/Stubs/'; copy($keysStubDirectory . $fileName, $filePath);