From 0c0bb60486ce4510169088369aaa9fdba0da6e18 Mon Sep 17 00:00:00 2001 From: Ceeram Date: Sun, 13 Nov 2011 03:29:54 +0100 Subject: [PATCH] avoid MissingPluginExceptions --- lib/Cake/Test/Case/View/ViewTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Test/Case/View/ViewTest.php b/lib/Cake/Test/Case/View/ViewTest.php index d5428c46bf2..1d612e77d8b 100644 --- a/lib/Cake/Test/Case/View/ViewTest.php +++ b/lib/Cake/Test/Case/View/ViewTest.php @@ -190,7 +190,7 @@ public function setUp() { CAKE . 'Test' . DS . 'test_app' . DS . 'View'. DS ) ), true); - CakePlugin::loadAll(); + CakePlugin::load(array('TestPlugin', 'TestPlugin', 'PluginJs')); Configure::write('debug', 2); }