mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-21 12:51:51 +00:00
fix(test): rename an it so that it doesn't colide with the test above
This commit is contained in:
parent
08ad4b6a46
commit
af21233820
1 changed files with 2 additions and 1 deletions
|
|
@ -649,7 +649,8 @@ describe('injector', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
it('should instantiate object and preserve constructor property and be instanceof', function() {
|
it('should instantiate object and preserve constructor property and be instanceof ' +
|
||||||
|
'with the array annotated type', function() {
|
||||||
var t = $injector.instantiate(['book', 'author', Type]);
|
var t = $injector.instantiate(['book', 'author', Type]);
|
||||||
expect(t.book).toEqual('moby');
|
expect(t.book).toEqual('moby');
|
||||||
expect(t.author).toEqual('melville');
|
expect(t.author).toEqual('melville');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue