Skip to content

Commit 55d41ed

Browse files
authored
Merge pull request #10110 from magento-gl/AC-15628
AC-15628: [WebAPI Tests] Composer Build Failure - 2.4.9-alpha3
2 parents 8cff488 + 54ca509 commit 55d41ed

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryInterfaceTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,7 @@ public function testGetListWithFilteringByWebsite()
10921092

10931093
/**
10941094
* @magentoApiDataFixture Magento/Catalog/_files/products_with_websites_and_stores.php
1095-
* @dataProvider testGetListWithFilteringByStoreDataProvider
1095+
* @dataProvider getListWithFilteringByStoreDataProvider
10961096
*
10971097
* @param array $searchCriteria
10981098
* @param array $skus
@@ -1137,7 +1137,7 @@ public function testGetListWithFilteringByStore(array $searchCriteria, array $sk
11371137
*
11381138
* @return array
11391139
*/
1140-
public static function testGetListWithFilteringByStoreDataProvider()
1140+
public static function getListWithFilteringByStoreDataProvider()
11411141
{
11421142
return [
11431143
[

dev/tests/api-functional/testsuite/Magento/Customer/Api/GroupRepositoryTest.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2016 Adobe
4+
* All Rights Reserved.
55
*/
66

77
namespace Magento\Customer\Api;
@@ -171,7 +171,7 @@ public function testCreateGroupRest()
171171
/**
172172
* Verify that creating a new group with excluded website as extension attributes works via REST.
173173
*
174-
* @dataProvider testExcludedWebsitesRestDataProvider
174+
* @dataProvider excludedWebsitesRestDataProvider
175175
* @param string $code
176176
* @param null|array $excludeWebsitesIds
177177
* @param null|array $result
@@ -223,7 +223,7 @@ public function testCreateGroupWithExcludedWebsiteRest(
223223
*
224224
* @return array
225225
*/
226-
public static function testExcludedWebsitesRestDataProvider(): array
226+
public static function excludedWebsitesRestDataProvider(): array
227227
{
228228
return [
229229
['Create Group No Excludes REST', [], null],
@@ -612,7 +612,7 @@ public function testCreateGroupSoap()
612612
/**
613613
* Verify that creating a new group with excluded website as extension attributes works via SOAP.
614614
*
615-
* @dataProvider testExcludedWebsitesSoapDataProvider
615+
* @dataProvider excludedWebsitesSoapDataProvider
616616
* @param string $code
617617
* @param array $excludeWebsitesIds
618618
* @param array|null $result
@@ -665,7 +665,7 @@ public function testCreateGroupWithExcludedWebsiteSoap(
665665
*
666666
* @return array
667667
*/
668-
public static function testExcludedWebsitesSoapDataProvider(): array
668+
public static function excludedWebsitesSoapDataProvider(): array
669669
{
670670
return [
671671
['Create Group No Excludes SOAP', [], null],
@@ -1092,7 +1092,7 @@ private function createGroup($group)
10921092
/**
10931093
* Data provider for testSearchGroups
10941094
*/
1095-
public static function testSearchGroupsDataProvider()
1095+
public static function searchGroupsDataProvider()
10961096
{
10971097
return [
10981098
['tax_class_id', 3, []],
@@ -1148,7 +1148,7 @@ public static function testSearchGroupsDataProvider()
11481148
* @param string $filterValue Value of the field to be filtered by
11491149
* @param array $expectedResult Expected search result
11501150
*
1151-
* @dataProvider testSearchGroupsDataProvider
1151+
* @dataProvider searchGroupsDataProvider
11521152
*/
11531153
public function testSearchGroups($filterField, $filterValue, $expectedResult)
11541154
{
@@ -1248,7 +1248,7 @@ public function testSearchGroupsWithMultipleFilterGroupsAndSorting()
12481248
* @param string $filterValue Value of the field to be filtered by
12491249
* @param array $expectedResult Expected search result
12501250
*
1251-
* @dataProvider testSearchGroupsDataProvider
1251+
* @dataProvider searchGroupsDataProvider
12521252
*/
12531253
public function testSearchGroupsWithGET($filterField, $filterValue, $expectedResult)
12541254
{

0 commit comments

Comments
 (0)