Skip to content

Commit 081a7fe

Browse files
committed
fixup! Do not send empty auth when setting up cross-signing keys
1 parent 53ad794 commit 081a7fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/CreateCrossSigning-test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe("CreateCrossSigning", () => {
4545

4646
const makeRequest = jest.fn();
4747
await authUploadDeviceSigningKeys!(makeRequest);
48-
expect(makeRequest).toHaveBeenCalledWith({});
48+
expect(makeRequest).toHaveBeenCalledWith(null);
4949
});
5050

5151
it("should prompt user if upload failed with UIA", async () => {

0 commit comments

Comments
 (0)