diff --git a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.spec.ts index 311a8eba29..7fd0d736f8 100644 --- a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.spec.ts +++ b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.spec.ts @@ -509,7 +509,7 @@ describe('CardViewTextItemComponent', () => { expect(cardViewUpdateService.update).toHaveBeenCalledWith(property, 'updated-value'); }); - it('should trigger the update event if the editedValue is NOT invalid', async () => { + it('should trigger the update event if the editedValue is NOT valid', async () => { const cardViewUpdateService = TestBed.inject(CardViewUpdateService); spyOn(cardViewUpdateService, 'update'); component.property.isValid = () => false;