Skip to content

Commit 250a826

Browse files
committed
Fix generic type
Refs: #7876
1 parent 9182558 commit 250a826

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/components/src/components/input-radio/input-radio.e2e.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ const fillAction: FillAction = async (page) => {
1919
const selectInput = (page: Page & E2EPage) => page.locator('input').first();
2020

2121
test.describe(COMPONENT_NAME, () => {
22-
testInputValueReflection<HTMLKolInputNumberElement>({
22+
testInputValueReflection<HTMLKolInputRadioElement>({
2323
additionalProperties: OPTIONS_ATTRIBUTE,
2424
componentName: COMPONENT_NAME,
2525
fillAction,
2626
testValue: TEST_VALUE,
2727
});
28-
testInputCallbacksAndEvents<HTMLKolInputNumberElement>({
28+
testInputCallbacksAndEvents<HTMLKolInputRadioElement>({
2929
additionalProperties: OPTIONS_ATTRIBUTE,
3030
componentName: COMPONENT_NAME,
3131
fillAction,
3232
omittedEvents: OMITTED_EVENTS,
3333
selectInput,
3434
testValue: TEST_VALUE,
3535
});
36-
testInputMessage<HTMLKolInputNumberElement>(COMPONENT_NAME);
36+
testInputMessage<HTMLKolInputRadioElement>(COMPONENT_NAME);
3737

3838
test.describe('value to option matching', () => {
3939
const OBJECT_FIRST = { id: 1, text: 'first' };

0 commit comments

Comments
 (0)