@@ -97,23 +97,23 @@ private function partRunDbDumpWithoutSplitDbArch(CliTester $I)
97
97
// Running database dump command with unavailable database label
98
98
$ I ->runDockerComposeCommand ('run deploy cloud-deploy ' );
99
99
100
- $ I ->runDockerComposeCommand ('run deploy ece-command db-dump quote ' );
100
+ $ I ->runDockerComposeCommand ('run deploy ece-command db-dump -n quote ' );
101
101
$ I ->seeInOutput (
102
102
'CRITICAL: Environment does not have connection `checkout` associated with database `quote` '
103
103
);
104
104
105
- $ I ->runDockerComposeCommand ('run deploy ece-command db-dump sales ' );
105
+ $ I ->runDockerComposeCommand ('run deploy ece-command db-dump -n sales ' );
106
106
$ I ->seeInOutput (
107
107
'CRITICAL: Environment does not have connection `sales` associated with database `sales` '
108
108
);
109
109
110
- $ I ->runDockerComposeCommand ('run deploy ece-command db-dump quote sales ' );
110
+ $ I ->runDockerComposeCommand ('run deploy ece-command db-dump -n quote sales ' );
111
111
$ I ->seeInOutput (
112
112
'CRITICAL: Environment does not have connection `checkout` associated with database `quote` '
113
113
);
114
114
115
115
// Running database dump command without database label (by default)
116
- $ I ->runDockerComposeCommand ('run deploy ece-command db-dump ' );
116
+ $ I ->runDockerComposeCommand ('run deploy ece-command db-dump -n ' );
117
117
$ I ->seeInOutput (array_merge (
118
118
$ this ->expectedLogs ,
119
119
[
@@ -148,7 +148,7 @@ private function partRunDbDumpWithSplitDbArch(CliTester $I)
148
148
$ I ->runDockerComposeCommand ('run deploy cloud-deploy ' );
149
149
150
150
// Running database dump command without database labels (by default)
151
- $ I ->runDockerComposeCommand ('run deploy ece-command db-dump ' );
151
+ $ I ->runDockerComposeCommand ('run deploy ece-command db-dump -n ' );
152
152
$ I ->seeInOutput (array_merge (
153
153
$ this ->expectedLogs ,
154
154
[
@@ -162,7 +162,7 @@ private function partRunDbDumpWithSplitDbArch(CliTester $I)
162
162
));
163
163
164
164
// Running database dump command with database labels
165
- $ I ->runDockerComposeCommand ('run deploy ece-command db-dump quote sales ' );
165
+ $ I ->runDockerComposeCommand ('run deploy ece-command db-dump -n quote sales ' );
166
166
$ I ->seeInOutput (array_merge (
167
167
$ this ->expectedLogs ,
168
168
[
0 commit comments