0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 17:34:47 -05:00

chore(cli/tests): fix typo in test failure message (#8935)

This commit is contained in:
Rich Trott 2020-12-30 08:00:55 -08:00 committed by GitHub
parent b07a0b640d
commit af222f7a7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -757,7 +757,7 @@ unitTest(
try { try {
await response.text(); await response.text();
fail( fail(
"Reponse.text() didn't throw on a filtered response without a body (type error)", "Response.text() didn't throw on a filtered response without a body (type error)",
); );
} catch (e) { } catch (e) {
return; return;