Skip to content

Commit b3f018c

Browse files
committed
MAGETWO-56974: Can not upgrade Magento 2.0.9 to 2.1.1 with sample data
- Message fix
1 parent d80874e commit b3f018c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup/src/Magento/Setup/Model/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ private function cleanDdlCache()
10911091
/** @var \Magento\Framework\App\Cache\Manager $cacheManager */
10921092
$cacheManager = $this->objectManagerProvider->get()->get(\Magento\Framework\App\Cache\Manager::class);
10931093
$cacheManager->clean([\Magento\Framework\DB\Adapter\DdlCache::TYPE_IDENTIFIER]);
1094-
$this->log->log('DDL cache was cleared successfully');
1094+
$this->log->log('DDL cache cleared successfully');
10951095
}
10961096

10971097
/**

setup/src/Magento/Setup/Test/Unit/Model/InstallerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ public function testInstall()
304304
$this->logger->expects($this->at(15))->method('log')->with('Schema post-updates:');
305305
$this->logger->expects($this->at(16))->method('log')->with("Module 'Foo_One':");
306306
$this->logger->expects($this->at(18))->method('log')->with("Module 'Bar_Two':");
307-
$this->logger->expects($this->at(20))->method('log')->with('DDL cache was cleared successfully');
307+
$this->logger->expects($this->at(20))->method('log')->with('DDL cache cleared successfully');
308308
$this->logger->expects($this->at(22))->method('log')->with('Installing user configuration...');
309309
$this->logger->expects($this->at(24))->method('log')->with('Enabling caches:');
310310
$this->logger->expects($this->at(28))->method('log')->with('Installing data...');

0 commit comments

Comments
 (0)