Put back both done's

mocha takes the exception arg and does the right thing
pull/21833/head
David Baker 2017-03-16 17:47:15 +00:00
parent 375ae8fb04
commit 23c38bd8a3
1 changed files with 1 additions and 1 deletions

View File

@ -113,6 +113,6 @@ describe('InteractiveAuthDialog', function () {
}).then(() => { }).then(() => {
expect(onFinished.callCount).toEqual(1); expect(onFinished.callCount).toEqual(1);
expect(onFinished.calledWithExactly(true, {a:1})).toBe(true); expect(onFinished.calledWithExactly(true, {a:1})).toBe(true);
}).done(done); }).done(done, done);
}); });
}); });