File tree 1 file changed +3
-3
lines changed
dev/tests/integration/framework/Magento/TestFramework/Db
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public function cleanup()
49
49
{
50
50
$ this ->ensureDefaultsExtraFile ();
51
51
$ this ->_shell ->execute (
52
- 'mysql --defaults-extra- file=%s --host=%s %s -e %s ' ,
52
+ 'mysql --defaults-file=%s --host=%s %s -e %s ' ,
53
53
[
54
54
$ this ->_defaultsExtraFile ,
55
55
$ this ->_host ,
@@ -86,7 +86,7 @@ public function storeDbDump()
86
86
{
87
87
$ this ->ensureDefaultsExtraFile ();
88
88
$ this ->_shell ->execute (
89
- 'mysqldump --defaults-extra- file=%s --host=%s %s > %s ' ,
89
+ 'mysqldump --defaults-file=%s --host=%s %s > %s ' ,
90
90
[$ this ->_defaultsExtraFile , $ this ->_host , $ this ->_schema , $ this ->getSetupDbDumpFilename ()]
91
91
);
92
92
}
@@ -102,7 +102,7 @@ public function restoreFromDbDump()
102
102
throw new \LogicException ("DB dump file does not exist: " . $ this ->getSetupDbDumpFilename ());
103
103
}
104
104
$ this ->_shell ->execute (
105
- 'mysql --defaults-extra- file=%s --host=%s %s < %s ' ,
105
+ 'mysql --defaults-file=%s --host=%s %s < %s ' ,
106
106
[$ this ->_defaultsExtraFile , $ this ->_host , $ this ->_schema , $ this ->getSetupDbDumpFilename ()]
107
107
);
108
108
}
You can’t perform that action at this time.
0 commit comments