From 751e167c6e358629893b008ce597196b55250eb8 Mon Sep 17 00:00:00 2001 From: Andrey Kharanenka <a.khoronenko@lovata.com> Date: Tue, 17 Apr 2018 21:16:16 +0300 Subject: [PATCH] Remove force boot and register plugins in CommonTest class --- tests/CommonTest.php | 4 ++-- updates/version.yaml | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/CommonTest.php b/tests/CommonTest.php index a73ac820..80e041a4 100644 --- a/tests/CommonTest.php +++ b/tests/CommonTest.php @@ -32,7 +32,7 @@ public function setUp() $obManager->refreshPlugin($sPluginKey); } - $obManager->bootAll(true); - $obManager->registerAll(true); + $obManager->bootAll(); + $obManager->registerAll(); } } \ No newline at end of file diff --git a/updates/version.yaml b/updates/version.yaml index 6c10c78d..bb0f1e99 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -25,4 +25,6 @@ 1.8.0: - 'Added translation into French. Thanks for contribution philmarc.' 1.9.0: - - 'Add TraitCached. Update vendor packages.' \ No newline at end of file + - 'Add TraitCached. Update vendor packages.' +1.9.1: + - 'Remove force boot and register plugins in CommonTest class' \ No newline at end of file