File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
src/Test/Functional/Acceptance Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+ declare (strict_types=1 );
7
+
8
+ namespace Magento \CloudPatches \Test \Functional \Acceptance ;
9
+
10
+ /**
11
+ * @group php84
12
+ */
13
+ class Acceptance84Cest extends AcceptanceCest
14
+ {
15
+ /**
16
+ * @return array
17
+ */
18
+ protected function patchesDataProvider (): array
19
+ {
20
+ return [
21
+ ['templateVersion ' => '2.4.8 ' , 'magentoVersion ' => '2.4.8 ' ],
22
+ ];
23
+ }
24
+ }
Original file line number Diff line number Diff line change 10
10
use Magento \CloudDocker \Test \Functional \Codeception \Docker ;
11
11
12
12
/**
13
- * @group php83
13
+ * @group php84
14
14
*/
15
15
class PatchApplierCest extends AbstractCest
16
16
{
@@ -21,7 +21,7 @@ public function _before(\CliTester $I): void
21
21
{
22
22
parent ::_before ($ I );
23
23
24
- $ this ->prepareTemplate ($ I , '2.4.7 ' );
24
+ $ this ->prepareTemplate ($ I , '2.4.8 ' );
25
25
$ I ->copyFileToWorkDir ('files/debug_logging/.magento.env.yaml ' , '.magento.env.yaml ' );
26
26
}
27
27
You can’t perform that action at this time.
0 commit comments