From 8c608b6a985c34da18ef3e535c2f309134c98cc0 Mon Sep 17 00:00:00 2001 From: Mariano Custiel Date: Fri, 8 Jan 2016 15:44:37 +0100 Subject: [PATCH] Rolled back unneeded change. --- tests/PluginTestCase.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/PluginTestCase.php b/tests/PluginTestCase.php index f32a626b2..9f6876b22 100644 --- a/tests/PluginTestCase.php +++ b/tests/PluginTestCase.php @@ -138,6 +138,9 @@ abstract class PluginTestCase extends Illuminate\Foundation\Testing\TestCase if (!empty($plugin->require)) { foreach ((array) $plugin->require as $dependency) { + + if (isset($this->pluginTestCaseLoadedPlugins[$code])) continue; + $this->runPluginRefreshCommand($dependency); } }