File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -97,8 +97,8 @@ public function execute(): void
97
97
}
98
98
99
99
if (isset ($ config ['key ' ], $ config ['secret ' ])) {
100
- $ options [] = '--remote-storage-access- key= ' . $ config ['key ' ];
101
- $ options [] = '--remote-storage-secret-key = ' . $ config ['secret ' ];
100
+ $ options [] = '--remote-storage-key= ' . $ config ['key ' ];
101
+ $ options [] = '--remote-storage-secret= ' . $ config ['secret ' ];
102
102
}
103
103
104
104
try {
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ public function testExecuteWithKeys(): void
115
115
->with (
116
116
'setup:config:set --remote-storage-driver=adapter '
117
117
. ' --remote-storage-bucket=test_bucket --remote-storage-region=test_region '
118
- . ' --remote-storage-access- key=test_key --remote-storage-secret-key =test_secret -n '
118
+ . ' --remote-storage-key=test_key --remote-storage-secret=test_secret -n '
119
119
);
120
120
$ this ->loggerMock ->expects (self ::once ())
121
121
->method ('info ' )
@@ -149,7 +149,7 @@ public function testExecuteWithKeysAndPrefix(): void
149
149
'setup:config:set --remote-storage-driver=adapter '
150
150
. ' --remote-storage-bucket=test_bucket --remote-storage-region=test_region '
151
151
. ' --remote-storage-prefix=test_prefix '
152
- . ' --remote-storage-access- key=test_key --remote-storage-secret-key =test_secret -n '
152
+ . ' --remote-storage-key=test_key --remote-storage-secret=test_secret -n '
153
153
);
154
154
$ this ->loggerMock ->expects (self ::once ())
155
155
->method ('info ' )
You can’t perform that action at this time.
0 commit comments