Skip to content

Commit 8dc0344

Browse files
authored
Fix tests (#32906)
1 parent 92fe0af commit 8dc0344

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/devextreme/js/__internal/grids/grid_core/validating/__tests__/validating.integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ describe('DataGrid Cell Editing', () => {
106106
],
107107
});
108108

109-
const firstEditor = component.getDataCell(0, 0).getEditor();
109+
const firstEditor = component.getDataCell(0, 0).getEditor(TextBoxModel);
110110
firstEditor.setValue('Item 1X');
111111
jest.runAllTimers();
112112

@@ -154,7 +154,7 @@ describe('DataGrid Cell Editing', () => {
154154
],
155155
});
156156

157-
const editor = component.getDataCell(0, 0).getEditor();
157+
const editor = component.getDataCell(0, 0).getEditor(TextBoxModel);
158158
editor.setValue('Changed');
159159
jest.runAllTimers();
160160

0 commit comments

Comments
 (0)