Skip to content

Commit f1e85ef

Browse files
Merge pull request #30 from magento-commerce/MCLOUD-11528
Add php 8.3 functional tests
2 parents b5889e1 + e3d87f9 commit f1e85ef

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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\CloudComponents\Test\Functional\Acceptance;
9+
10+
/**
11+
* @group php82
12+
*/
13+
class Acceptance82Cest extends AcceptanceCest
14+
{
15+
/**
16+
* @return array
17+
*/
18+
protected function patchesDataProvider(): array
19+
{
20+
return [
21+
['magentoVersion' => '2.4.6'],
22+
];
23+
}
24+
}

Test/Functional/Acceptance/AcceptanceCest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Magento\CloudComponents\Test\Functional\Acceptance;
99

1010
/**
11-
* @group php82
11+
* @group php83
1212
*/
1313
class AcceptanceCest
1414
{
@@ -101,7 +101,7 @@ protected function removeESIfExists(\CliTester $I, string $magentoVersion): void
101101
protected function patchesDataProvider(): array
102102
{
103103
return [
104-
['magentoVersion' => '2.4.6'],
104+
['magentoVersion' => '2.4.7-beta-test'],
105105
];
106106
}
107107

0 commit comments

Comments
 (0)