1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2026-01-03 23:22:30 +03:00
This commit is contained in:
David Baker
2019-11-07 15:20:07 +00:00
parent 12627022d1
commit 03fe4afe32

View File

@@ -305,7 +305,9 @@ describe("SAS verification", function() {
const verifyProm = Promise.all([
aliceVerifier.verify(),
bobPromise.then((verifier) => {
bob.httpBackend.when('POST', '/keys/signatures/upload').respond(200, {});
bob.httpBackend.when(
'POST', '/keys/signatures/upload',
).respond(200, {});
bob.httpBackend.flush(undefined, 2);
return verifier.verify();
}),