This commit is contained in:
tamaina 2025-08-29 00:09:54 +09:00
parent 95eeac150c
commit 42946e3f68
1 changed files with 2 additions and 2 deletions

View File

@ -516,7 +516,7 @@ describe('User', () => {
await rejects(
async () => await resolveRemoteUser('a.test', alice.id, bob),
(err: any) => {
strictEqual(err.code, 'INTERNAL_ERROR');
strictEqual(err.code, 'SOMETHING_HAPPENED_IN_FETCHING_URI');
return true;
},
);
@ -551,7 +551,7 @@ describe('User', () => {
await rejects(
async () => await resolveRemoteUser('a.test', alice.id, bob),
(err: any) => {
strictEqual(err.code, 'INTERNAL_ERROR');
strictEqual(err.code, 'SOMETHING_HAPPENED_IN_FETCHING_URI');
return true;
},
);