fix(test): rename an it so that it doesn't colide with the test above

This commit is contained in:
Igor Minar 2012-03-06 14:15:41 -08:00
parent 08ad4b6a46
commit af21233820

View file

@ -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]);
expect(t.book).toEqual('moby');
expect(t.author).toEqual('melville');