fix(docs): Fix a missing opening bracket (#8331)

This commit is contained in:
Levente Morva 2016-05-20 19:06:15 +02:00 committed by Miško Hevery
parent 68f9aaf214
commit d75f928fca
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ it('should wait for returned promises', async(inject([FancyService], (service) =
})));
// Note that if there is no injection, we no longer need `inject` OR `injectAsync`.
it('should wait for returned promises', async(() => {
somePromise.then() => { expect(true).toEqual(true); });
somePromise.then(() => { expect(true).toEqual(true); });
}));
```