Skip to content

Commit cce3115

Browse files
author
Hayder Sharhan
committed
Merge remote-tracking branch 'remotes/api/MAGETWO-50034' into ext-public-pull-requests
2 parents eebf888 + 854a6f3 commit cce3115

File tree

1 file changed

+3
-3
lines changed
  • dev/tests/integration/framework/Magento/TestFramework/Db

1 file changed

+3
-3
lines changed

dev/tests/integration/framework/Magento/TestFramework/Db/Mysql.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function cleanup()
4949
{
5050
$this->ensureDefaultsExtraFile();
5151
$this->_shell->execute(
52-
'mysql --defaults-extra-file=%s --host=%s %s -e %s',
52+
'mysql --defaults-file=%s --host=%s %s -e %s',
5353
[
5454
$this->_defaultsExtraFile,
5555
$this->_host,
@@ -86,7 +86,7 @@ public function storeDbDump()
8686
{
8787
$this->ensureDefaultsExtraFile();
8888
$this->_shell->execute(
89-
'mysqldump --defaults-extra-file=%s --host=%s %s > %s',
89+
'mysqldump --defaults-file=%s --host=%s %s > %s',
9090
[$this->_defaultsExtraFile, $this->_host, $this->_schema, $this->getSetupDbDumpFilename()]
9191
);
9292
}
@@ -102,7 +102,7 @@ public function restoreFromDbDump()
102102
throw new \LogicException("DB dump file does not exist: " . $this->getSetupDbDumpFilename());
103103
}
104104
$this->_shell->execute(
105-
'mysql --defaults-extra-file=%s --host=%s %s < %s',
105+
'mysql --defaults-file=%s --host=%s %s < %s',
106106
[$this->_defaultsExtraFile, $this->_host, $this->_schema, $this->getSetupDbDumpFilename()]
107107
);
108108
}

0 commit comments

Comments
 (0)