fix test/e2e/fetch-validate-ap-deny.ts

This commit is contained in:
dakkar 2025-05-13 15:35:03 +01:00
parent bc1cd86b10
commit 64d254f07f

View file

@ -25,7 +25,7 @@ describe('validateContentTypeSetAsActivityPub/JsonLD (deny case)', () => {
validateContentTypeSetAsActivityPub(res);
}
expect(doValidate).toThrow('Content type is not');
expect(doValidate).toThrow('content type is not');
});
test('JSON-LD: ファイルはエラーになる', async () => {
@ -35,6 +35,6 @@ describe('validateContentTypeSetAsActivityPub/JsonLD (deny case)', () => {
validateContentTypeSetAsJsonLD(res);
}
expect(doValidate).toThrow('Content type is not');
expect(doValidate).toThrow('content type is not');
});
});