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

Commit b5b7136

Browse files
committed
Add input_type to customAttributeMetadata query
1 parent 248ca5c commit b5b7136

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)