Skip to content

Commit dadda26

Browse files
committed
chore: remove mention of previous editor/filterOptions
1 parent 8ae3e2e commit dadda26

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/common/src/editors/__tests__/autocompleterEditor.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ describe('AutocompleterEditor', () => {
689689
});
690690

691691
describe('renderItem callback method', () => {
692-
it('should provide "renderItem" in the "editorOptions" and expect the autocomplete "render" to be overriden', () => {
692+
it('should provide "renderItem" in the editor "options" and expect the autocomplete "render" to be overriden', () => {
693693
const mockTemplateString = `<div>Hello World</div>`;
694694
const mockTemplateCallback = () => mockTemplateString;
695695
mockColumn.editor = {

packages/common/src/filters/__tests__/autocompleterFilter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ describe('AutocompleterFilter', () => {
654654
});
655655

656656
describe('handleSelect method', () => {
657-
it('should expect the "handleSelect" method to be called when the callback method is triggered when user provide his own filterOptions', () => {
657+
it('should expect the "handleSelect" method to be called when the callback method is triggered when user provide his own filter options', () => {
658658
const spy = vi.spyOn(filter, 'handleSelect');
659659

660660
mockColumn.filter.collection = [];

0 commit comments

Comments
 (0)