Skip to content

Commit d299581

Browse files
committed
AC-15627::[Integration Tests] Composer Build Failure - 2.4.9-alpha3
1 parent 8cff488 commit d299581

File tree

17 files changed

+35
-35
lines changed

17 files changed

+35
-35
lines changed

dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public static function prepareOptionValueForRequestDataProvider()
119119
/**
120120
* Check date in prepareForCart method with javascript calendar and Asia/Singapore timezone
121121
*
122-
* @dataProvider testPrepareForCartDataProvider
122+
* @dataProvider datePrepareForCartDataProvider
123123
* @param array $dateData
124124
* @param array $productOptionData
125125
* @param array $requestData
@@ -154,7 +154,7 @@ public function testPrepareForCart(
154154
*
155155
* @return array
156156
*/
157-
public static function testPrepareForCartDataProvider()
157+
public static function datePrepareForCartDataProvider()
158158
{
159159
return [
160160
[

dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/EavTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ private function prepareAttributeSet(array $additional): void
225225

226226
/**
227227
* @magentoDataFixture Magento/Catalog/_files/attribute_page_layout_default.php
228-
* @dataProvider testModifyMetaNewProductPageLayoutDefaultProvider
228+
* @dataProvider attrModifyMetaNewProductPageLayoutDefaultProvider
229229
* @return void
230230
*/
231231
public function testModifyMetaNewProductPageLayoutDefault($attributesMeta): void
@@ -245,7 +245,7 @@ public function testModifyMetaNewProductPageLayoutDefault($attributesMeta): void
245245
/**
246246
* @return array
247247
*/
248-
public static function testModifyMetaNewProductPageLayoutDefaultProvider(): array
248+
public static function attrModifyMetaNewProductPageLayoutDefaultProvider(): array
249249
{
250250
return [
251251
'attributes_meta' => [

dev/tests/integration/testsuite/Magento/CatalogSearch/Controller/Advanced/ResultTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public function testExecuteWithArrayInParam(array $searchParams): void
171171
* @magentoAppArea frontend
172172
* @magentoDataFixture Magento/CatalogSearch/_files/product_for_search.php
173173
* @magentoDataFixture Magento/CatalogSearch/_files/full_reindex.php
174-
* @dataProvider testDataForAttributesCombination
174+
* @dataProvider searchDataForAttributesCombination
175175
*
176176
* @param array $searchParams
177177
* @param bool $isProductShown
@@ -381,7 +381,7 @@ private function getAttributeOptionValueByOptionLabel(string $attributeCode, str
381381
*
382382
* @return array
383383
*/
384-
public static function testDataForAttributesCombination(): array
384+
public static function searchDataForAttributesCombination(): array
385385
{
386386
return [
387387
'search_product_by_name_and_price' => [

dev/tests/integration/testsuite/Magento/Cms/Model/BlockTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ protected function setUp(): void
5858
* @throws \Exception
5959
* @throws \Magento\Framework\Exception\NoSuchEntityException
6060
* @magentoDbIsolation enabled
61-
* @dataProvider testGetByIdentifierDataProvider
61+
* @dataProvider blockGetByIdentifierDataProvider
6262
*/
6363
public function testGetByIdentifier(array $blockData)
6464
{
@@ -79,7 +79,7 @@ public function testGetByIdentifier(array $blockData)
7979
* @throws \Exception
8080
* @throws \Magento\Framework\Exception\NoSuchEntityException
8181
* @magentoDbIsolation enabled
82-
* @dataProvider testGetByIdentifierDataProvider
82+
* @dataProvider blockGetByIdentifierDataProvider
8383
*/
8484
public function testUpdateTime(array $blockData)
8585
{
@@ -112,7 +112,7 @@ public function testUpdateTime(array $blockData)
112112
* Data provider for "testGetByIdentifier" and "testUpdateTime" method
113113
* @return array
114114
*/
115-
public static function testGetByIdentifierDataProvider(): array
115+
public static function blockGetByIdentifierDataProvider(): array
116116
{
117117
return [
118118
[

dev/tests/integration/testsuite/Magento/Cms/Model/PageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protected function setUp(): void
3434
* @param array $pageData
3535
* @throws \Magento\Framework\Exception\NoSuchEntityException
3636
* @magentoDbIsolation enabled
37-
* @dataProvider testGetByIdentifierDataProvider
37+
* @dataProvider pageGetByIdentifierDataProvider
3838
*/
3939
public function testGetByIdentifier(array $pageData)
4040
{
@@ -122,7 +122,7 @@ public static function generateIdentifierFromTitleDataProvider() : array
122122
* Data provider for "testGetByIdentifier" method
123123
* @return array
124124
*/
125-
public static function testGetByIdentifierDataProvider() : array
125+
public static function pageGetByIdentifierDataProvider() : array
126126
{
127127
return [
128128
['pageData' => [

dev/tests/integration/testsuite/Magento/Cms/Model/Wysiwyg/Images/StorageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ public function testUploadFileWithExcludedDirPath(): void
239239
* @param string|null $storageType
240240
*
241241
* @return void
242-
* @dataProvider testUploadFileWithWrongExtensionDataProvider
242+
* @dataProvider filenameUploadFileWithWrongExtensionDataProvider
243243
*/
244244
public function testUploadFileWithWrongExtension(string $fileName, string $fileType, ?string $storageType): void
245245
{
@@ -268,7 +268,7 @@ public function testUploadFileWithWrongExtension(string $fileName, string $fileT
268268
/**
269269
* @return array
270270
*/
271-
public static function testUploadFileWithWrongExtensionDataProvider(): array
271+
public static function filenameUploadFileWithWrongExtensionDataProvider(): array
272272
{
273273
return [
274274
[

dev/tests/integration/testsuite/Magento/Framework/Image/Adapter/InterfaceTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ public function testValidateUploadFile()
756756
}
757757

758758
/**
759-
* @dataProvider testValidateUploadFileExceptionDataProvider
759+
* @dataProvider imageValidateUploadFileExceptionDataProvider
760760
* @param string $fileName
761761
* @param string $expectedErrorMsg
762762
* @param bool $useFixture
@@ -779,7 +779,7 @@ public function testValidateUploadFileException($fileName, $expectedErrorMsg, $u
779779
/**
780780
* @return array
781781
*/
782-
public static function testValidateUploadFileExceptionDataProvider()
782+
public static function imageValidateUploadFileExceptionDataProvider()
783783
{
784784
return [
785785
'image_notfound' => [

dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Export/File/DeleteTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ protected function setUp(): void
5858
* Check that file can be removed under var/export directory.
5959
*
6060
* @param string $file
61-
* @dataProvider testExecuteProvider
61+
* @dataProvider csvExecuteProvider
6262
* @return void
6363
* @magentoConfigFixture default_store admin/security/use_form_key 1
6464
*/
@@ -100,7 +100,7 @@ protected function copyFile($destinationFilePath): void
100100
*
101101
* @return array
102102
*/
103-
public static function testExecuteProvider(): array
103+
public static function csvExecuteProvider(): array
104104
{
105105
return [
106106
['catalog_product.csv'],

dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Export/File/DownloadTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected function setUp(): void
7272
* Check that file can be downloaded.
7373
*
7474
* @param string $file
75-
* @dataProvider testExecuteProvider
75+
* @dataProvider csvExecuteProvider
7676
* @return void
7777
* @magentoConfigFixture default_store admin/security/use_form_key 1
7878
* @magentoAppArea adminhtml
@@ -136,7 +136,7 @@ private function copyFile($destinationFilePath): void
136136
*
137137
* @return array
138138
*/
139-
public static function testExecuteProvider(): array
139+
public static function csvExecuteProvider(): array
140140
{
141141
return [
142142
['catalog_product.csv'],

dev/tests/integration/testsuite/Magento/TestModuleOverrideConfig/MagentoAdminConfigFixture/AddFixtureTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function testAddFixtureToClass(): void
4444
/**
4545
* Checks that fixtures added in method and data set nodes successfully applied
4646
*
47-
* @dataProvider testDataProvider
47+
* @dataProvider configDataProvider
4848
*
4949
* @param string $expectedConfigValue
5050
* @return void
@@ -58,7 +58,7 @@ public function testAddFixtureToMethod(string $expectedConfigValue): void
5858
/**
5959
* @return array
6060
*/
61-
public static function testDataProvider(): array
61+
public static function configDataProvider(): array
6262
{
6363
return [
6464
'first_data_set' => ['expectedConfigValue' => 'overridden config fixture value for method'],

0 commit comments

Comments
 (0)