Refactored to remove forceBypassCache param from requestService and from data service classes.

This commit is contained in:
Michael W Spalti
2019-08-28 17:05:37 -07:00
parent 262b33261e
commit 1b48d3d1f6
26 changed files with 24 additions and 47 deletions

View File

@@ -62,7 +62,7 @@ describe('SubmissionRestService test suite', () => {
scheduler.schedule(() => service.getDataById(resourceEndpoint, resourceScope).subscribe());
scheduler.flush();
expect(requestService.configure).toHaveBeenCalledWith(expected, true);
expect(requestService.configure).toHaveBeenCalledWith(expected);
});
});