Skip to content

Commit af21233

Browse files
committed
fix(test): rename an it so that it doesn't colide with the test above
1 parent 08ad4b6 commit af21233

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/InjectorSpec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,8 @@ describe('injector', function() {
649649
});
650650

651651

652-
it('should instantiate object and preserve constructor property and be instanceof', function() {
652+
it('should instantiate object and preserve constructor property and be instanceof ' +
653+
'with the array annotated type', function() {
653654
var t = $injector.instantiate(['book', 'author', Type]);
654655
expect(t.book).toEqual('moby');
655656
expect(t.author).toEqual('melville');

0 commit comments

Comments
 (0)