Remove @deprecated methods.

This commit is contained in:
Christian Williams
2009-10-19 17:53:29 -07:00
committed by Christian Williams
parent 6b3bf1b3ba
commit b6e408aab8
5 changed files with 2 additions and 60 deletions

View File

@@ -68,7 +68,7 @@ describe('Suite', function() {
});
});
expect(suite.specCount()).toEqual(3);
expect(suite.specs().length).toEqual(3);
});
it('specCount should be correct even with runs/waits blocks', function() {
@@ -94,7 +94,7 @@ describe('Suite', function() {
});
});
expect(suite.specCount()).toEqual(3);
expect(suite.specs().length).toEqual(3);
});
});
});