diff options
author | Rich Trott <rtrott@gmail.com> | 2020-12-30 08:00:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 11:00:55 -0500 |
commit | af222f7a7f18a1fa7bdf1d10ce24aa4deb79ccb4 (patch) | |
tree | a91d31493459dcf74dbe05b91053ed7405785188 /cli/tests | |
parent | b07a0b640d01d87c926a74d42e26a6561848c7c5 (diff) |
chore(cli/tests): fix typo in test failure message (#8935)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/unit/fetch_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/fetch_test.ts b/cli/tests/unit/fetch_test.ts index 2355d0813..86df4a1a9 100644 --- a/cli/tests/unit/fetch_test.ts +++ b/cli/tests/unit/fetch_test.ts @@ -757,7 +757,7 @@ unitTest( try { await response.text(); 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) { return; |