Fixed unit test that was missing from project before rebase.

This commit is contained in:
Michael W Spalti
2019-09-16 11:56:04 -07:00
parent 0b6963aea1
commit e6e9530b3f

View File

@@ -106,7 +106,7 @@ describe('RelationshipService', () => {
it('should send a DeleteRequest', () => { it('should send a DeleteRequest', () => {
const expected = new DeleteRequest(requestService.generateRequestId(), relationshipsEndpointURL + '/' + relationship1.uuid); const expected = new DeleteRequest(requestService.generateRequestId(), relationshipsEndpointURL + '/' + relationship1.uuid);
expect(requestService.configure).toHaveBeenCalledWith(expected, undefined); expect(requestService.configure).toHaveBeenCalledWith(expected);
}); });
it('should clear the related items their cache', () => { it('should clear the related items their cache', () => {