fix getIDHref mock, it returns a string, not an observable

This commit is contained in:
Art Lowel
2019-05-17 17:49:48 +02:00
parent 9ac0aaeb28
commit cb28c4fc0c

View File

@@ -89,7 +89,7 @@ describe('ComColDataService', () => {
function initMockCommunityDataService(): CommunityDataService {
return jasmine.createSpyObj('responseCache', {
getEndpoint: hot('--a-', { a: communitiesEndpoint }),
getIDHref: cold('b-', { b: communityEndpoint })
getIDHref: communityEndpoint
});
}