Skip to content

Commit

Permalink
fix: poi interface fix
Browse files Browse the repository at this point in the history
  • Loading branch information
petrot committed Apr 26, 2018
1 parent 5e09ddd commit 8e2a0bf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ import { poisStored as poiFixtures } from './fixtures';
describe('Poi selectors', () => {
let store: Store<IPoiState>;
let poisData: IPoiStored[];
let pois: IPoi[];
let pois: IPoiStored[];
let ids: string[];
let destroy$: Subject<boolean>;

beforeEach(() => {
poisData = [ ...poiFixtures ];
ids = poisData.map(poi => poi.id);
ids = poiFixtures.map(poi => poi.id);
pois = poiFixtures.map(data => data);
destroy$ = new Subject<boolean>();

Expand Down

0 comments on commit 8e2a0bf

Please sign in to comment.