From 2a1c85937c3b88fee985902f9d71f058f3882038 Mon Sep 17 00:00:00 2001 From: Michael W Spalti <mspalti@gmail.com> Date: Mon, 16 Sep 2019 11:56:04 -0700 Subject: [PATCH] Fixed unit test that was missing from project before rebase. --- src/app/core/data/relationship.service.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/data/relationship.service.spec.ts b/src/app/core/data/relationship.service.spec.ts index 31513bb779..7b8ed4a60b 100644 --- a/src/app/core/data/relationship.service.spec.ts +++ b/src/app/core/data/relationship.service.spec.ts @@ -106,7 +106,7 @@ describe('RelationshipService', () => { it('should send a DeleteRequest', () => { 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', () => { -- GitLab