Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
fix(astronaut): Attempt to fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir authored and joshuawilson committed Mar 3, 2017
1 parent 03c06ce commit d23d823
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/app/iteration/iterations.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { AstronautService } from './../shared/astronaut.service';
import {
BaseRequestOptions,
Http,
Expand Down Expand Up @@ -78,7 +79,7 @@ describe ('Iteration service - ', () => {
useValue: fakeAuthService
},
{
provide: SpaceService,
provide: AstronautService,
useValue: fakeSpaceService
},
IterationService,
Expand Down
5 changes: 3 additions & 2 deletions src/app/work-item/work-item.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { AstronautService } from './../shared/astronaut.service';
import {
async,
inject,
Expand Down Expand Up @@ -164,7 +165,7 @@ describe('Work Item Service - ', () => {
// MockDataService should be removed at some point
MockDataService,
{
provide: SpaceService,
provide: AstronautService,
useValue: fakeSpcaeService
},
WorkItemService,
Expand Down Expand Up @@ -213,7 +214,7 @@ describe('Work Item Service - ', () => {
'type': 'workitemtypes'
}
},
'creator': {}
'creator': {},
},
'type': 'workitems'
}
Expand Down

0 comments on commit d23d823

Please sign in to comment.