Skip to content

Commit beea29b

Browse files
committed
MCLOUD-13768: Test 2.4.9 with PHP 8.4 & OpenSearch 3
1 parent bdac8ec commit beea29b

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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\CloudDocker\Test\Functional\Acceptance;
9+
10+
use CliTester;
11+
use Codeception\Example;
12+
use Robo\Exception\TaskException;
13+
14+
/**
15+
* @group php84
16+
*/
17+
class Opensearch84Cest extends OpensearchCest
18+
{
19+
/**
20+
* Template version for testing
21+
*/
22+
protected const TEMPLATE_VERSION = '2.4.9';
23+
}

src/Test/Functional/Acceptance/OpensearchCest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
use Robo\Exception\TaskException;
1313

1414
/**
15-
* @group php83
15+
* @group php84
1616
*/
1717
class OpensearchCest extends AbstractCest
1818
{
1919
/**
2020
* Template version for testing
2121
*/
22-
protected const TEMPLATE_VERSION = '2.4.7';
22+
protected const TEMPLATE_VERSION = '2.4.9';
2323

2424
/**
2525
* @param CliTester $I

0 commit comments

Comments
 (0)