Put back both done's

mocha takes the exception arg and does the right thing
This commit is contained in:
David Baker 2017-03-16 17:47:15 +00:00
parent 375ae8fb04
commit 23c38bd8a3

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);
}); });
}); });