Skip to content

Commit

Permalink
fixup! fix(core): Remove static dependency from @angular/core to @ang…
Browse files Browse the repository at this point in the history
…ular/compiler.
  • Loading branch information
mhevery committed Oct 30, 2018
1 parent 8cf90f4 commit 5d257f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/test/render3/jit/directive_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ describe('jit directive helper functions', () => {
read: Directive
});

expect(converted.predicate).toEqual(jasmine.any(WrappedNodeExpr));
expect(converted.read).toEqual(jasmine.any(WrappedNodeExpr));
expect(converted.predicate).toEqual(Directive);
expect(converted.read).toEqual(Directive);
});

});
Expand Down

0 comments on commit 5d257f6

Please sign in to comment.