Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit c074f1f

Browse files
authored
Merge pull request #2596 from magento-commerce/imported-mage2pratik-devdocs-9200
[Imported] Add input_type to customAttributeMetadata query
2 parents 248ca5c + b5b7136 commit c074f1f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/guides/v2.3/graphql/functional-testing.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ class ProductAttributeTypeTest extends GraphQlAbstract
5555
attribute_code
5656
attribute_type
5757
entity_type
58+
input_type
5859
}
5960
}
6061
}
@@ -75,7 +76,8 @@ QUERY;
7576
\Magento\Catalog\Api\Data\ProductInterface::class
7677
];
7778
$attributeTypes = ['String', 'Int', 'Float','Boolean', 'Float'];
78-
$this->assertAttributeType($attributeTypes, $expectedAttributeCodes, $entityType, $response);
79+
$inputTypes = ['textarea', 'select', 'price', 'boolean', 'price'];
80+
$this->assertAttributeType($attributeTypes, $expectedAttributeCodes, $entityType, $inputTypes, $response);
7981
}
8082
```
8183

0 commit comments

Comments
 (0)