From c312ea72c5f070e4e4769af31fda12b618c6327c Mon Sep 17 00:00:00 2001 From: Alec Larson <1925840+aleclarson@users.noreply.github.com> Date: Sun, 23 Jun 2024 21:04:13 -0400 Subject: [PATCH] chore: fix typo in test name --- src/tests/async.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/async.test.ts b/src/tests/async.test.ts index 9e2fbaf1..c7f73dfc 100644 --- a/src/tests/async.test.ts +++ b/src/tests/async.test.ts @@ -332,7 +332,7 @@ describe('async module', () => { expect(errors).toBeUndefined() expect(results).toEqual(['hi_1', 'hi_2', 'hi_3']) }) - test('throws erros as array of all errors', async () => { + test('throws errors as array of all errors', async () => { const [error, results] = await _.try(async () => { return _.parallel(1, _.list(1, 3), async num => { await _.sleep(1000)