fixing tests

This commit is contained in:
lotte
2019-12-20 08:55:23 +01:00
parent a5ed837180
commit 9d185e8a15
5 changed files with 8 additions and 7 deletions

View File

@@ -150,7 +150,7 @@ export class RelationshipService extends DataService<Relationship> {
this.requestService.removeByHrefSubstring(item.uuid);
combineLatest(
this.objectCache.hasBySelfLinkObservable(item.self),
this.requestService.hasByHrefObservable(item.self)
this.requestService.hasByHrefObservable(item.uuid)
).pipe(
filter(([existsInOC, existsInRC]) => !existsInOC && !existsInRC),
take(1),