Fixes after review

This commit is contained in:
Piotr Pekala
2018-12-19 07:25:09 -08:00
parent 79f174faea
commit 085b099e96
20 changed files with 152 additions and 56 deletions

View File

@ -42,7 +42,7 @@ import { HttpServer } from '../../services/http-server.service';
import { Server } from '../../models/server';
import { ResizedDataEvent } from '../../cartography/events/event-source';
import { MapLabelToLabelConverter } from '../../cartography/converters/map/map-label-to-label-converter';
import { DrawingsFactory } from '../../cartography/helpers/drawings-factory';
import { DefaultDrawingsFactory } from '../../cartography/helpers/default-drawings-factory';
export class MockedProgressService {
public activate() {}
@ -117,7 +117,7 @@ describe('ProjectMapComponent', () => {
{ provide: NodesEventSource },
{ provide: DrawingsEventSource },
{ provide: LinksEventSource },
{ provide: DrawingsFactory },
{ provide: DefaultDrawingsFactory },
{ provide: MapDrawingToSvgConverter, useValue: {
convert: () => { return ''}
} },