fix(tests): fixed a broken test

This commit is contained in:
vsavkin 2015-03-26 07:46:26 -07:00
parent ff84506bd5
commit ee36aaf163
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ export function main() {
UserController
]);
injector.asyncGet(UserList).then(() => {
injector.asyncGet(UserList).then((_) => {
expect(() => { injector.get(UserController); }).not.toThrow();
async.done();
});