From cb795da1aa33f949ce2ccc9d9a1b59111769d1af Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 3 Nov 2020 20:03:29 +0300 Subject: [PATCH] feat(tests): update tests for Plugins #477 --- tests/Foundation/PluginsTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Foundation/PluginsTest.php b/tests/Foundation/PluginsTest.php index b209b781..eae2cbbe 100644 --- a/tests/Foundation/PluginsTest.php +++ b/tests/Foundation/PluginsTest.php @@ -7,8 +7,8 @@ use Atomastic\Strings\Strings; beforeEach(function() { // Create sandbox plugin - filesystem()->directory(PATH['project'])->create(0755, true); - filesystem()->directory(PATH['project'] . '/plugins')->create(0755, true); + filesystem()->directory(PATH['project'])->create(); + filesystem()->directory(PATH['project'] . '/plugins')->create(); filesystem()->directory(PATH['project'] . '/plugins/sandbox')->create(0755, true); filesystem()->directory(PATH['project'] . '/plugins/sandbox/lang/')->create(0755, true); filesystem()->file(PATH['project'] . '/plugins/sandbox/lang/en_US.yaml')->put('sandbox_title: Sandbox');