Skip to content

Commit

Permalink
Fix missing update of del to delete in http mock
Browse files Browse the repository at this point in the history
  • Loading branch information
eliperelman committed Apr 30, 2019
1 parent 2686fc7 commit f0eb7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/public/http/http_service.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const createSetupContractMock = (): jest.Mocked<HttpSetup> => ({
get: jest.fn(),
post: jest.fn(),
put: jest.fn(),
del: jest.fn(),
delete: jest.fn(),
addLoadingCount: jest.fn(),
getLoadingCount$: jest.fn(),
});
Expand Down

0 comments on commit f0eb7f1

Please sign in to comment.