Skip to content

Commit

Permalink
fix(tests): fix path in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sebholstein committed Jun 5, 2016
1 parent 3bcc5ed commit f03f04f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/services/marker-manager.spec.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import {describe, it, expect, beforeEachProviders, inject, async} from '@angular/core/testing';
import {provide, NgZone} from '@angular/core';

import {MarkerManager} from '../../src/services/marker-manager';
import {Marker} from '../../src/services/google-maps-types';
import {GoogleMapsAPIWrapper} from '../../src/services/google-maps-api-wrapper';
import {SebmGoogleMapMarker} from '../../src/directives/google-map-marker';
import {MarkerManager} from '../../src/core/services/marker-manager';
import {Marker} from '../../src/core/services/google-maps-types';
import {GoogleMapsAPIWrapper} from '../../src/core/services/google-maps-api-wrapper';
import {SebmGoogleMapMarker} from '../../src/core/directives/google-map-marker';

export function main() {
describe('MarkerManager', () => {
Expand Down

0 comments on commit f03f04f

Please sign in to comment.