Reverted object cache method names back to the original UUID convention.

This commit is contained in:
Michael W Spalti
2019-10-30 14:23:50 -07:00
parent d309b2081c
commit 0dd765d84a
6 changed files with 13 additions and 13 deletions

View File

@@ -298,7 +298,7 @@ describe('RequestService', () => {
describe('in the ObjectCache', () => {
beforeEach(() => {
(objectCache.hasBySelfLink as any).and.returnValue(true);
(objectCache.hasById as any).and.returnValue(true);
(objectCache.hasByUUID as any).and.returnValue(true);
spyOn(serviceAsAny, 'hasByHref').and.returnValue(false);
});