65240: Removed old test cases

This commit is contained in:
Kristof De Langhe
2019-10-23 13:37:13 +02:00
parent 19a2ae6ecc
commit 896e19990b

View File

@@ -231,11 +231,6 @@ describe('ComColFormComponent', () => {
it('should display a success notification', () => {
expect(notificationsService.success).toHaveBeenCalled();
});
it('should remove the object\'s cache', () => {
expect(requestServiceStub.removeByHrefSubstring).toHaveBeenCalled();
expect(objectCacheStub.remove).toHaveBeenCalled();
});
});
describe('when dsoService.deleteLogo returns an error response', () => {
@@ -249,11 +244,6 @@ describe('ComColFormComponent', () => {
it('should display an error notification', () => {
expect(notificationsService.error).toHaveBeenCalled();
});
it('should remove the object\'s cache', () => {
expect(requestServiceStub.removeByHrefSubstring).toHaveBeenCalled();
expect(objectCacheStub.remove).toHaveBeenCalled();
});
});
});
});