refactor(di/tests): removes unecessary for-loop

Closes #3268
This commit is contained in:
Pascal Precht 2015-07-24 16:10:16 +02:00 committed by Misko Hevery
parent a62a6ba40a
commit 39ad50657e
1 changed files with 0 additions and 5 deletions

View File

@ -181,11 +181,6 @@ export function main() {
it('should supporting binding to null', () => {
var injector = createInjector([bind(Engine).toValue(null)]);
for (var i = 0; i < 20; ++i) {
injector.get(Engine);
}
var engine = injector.get(Engine);
expect(engine).toBeNull();
});