Skip to content

Commit

Permalink
Db Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajesh Vijay authored and Rajesh Vijay committed Jun 6, 2017
1 parent c4586f7 commit d4bda2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions angular-cli-ngrx/src/app/effects/blogEffects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ describe('Blog Effect', () => {
inject([
EffectsRunner, BlogEffects, BlogService
],
(_runner, _tagEffects, _tagService) => {
(_runner, _blogEffects, _blogService) => {
runner = _runner;
blogEffects = _tagEffects;
blogService = _tagService;
blogEffects = _blogEffects;
blogService = _blogService;
spyOn(blogService, 'loadBlogs')
.and.returnValue(Observable.of(['Blog1']));
runner.queue({ type: 'REQUEST_BLOGS' });
Expand Down

0 comments on commit d4bda2a

Please sign in to comment.