From f65477ee737bd402330153cde3a8156395ad4b46 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sun, 13 Mar 2016 14:47:44 +0700 Subject: [PATCH] fix typo in tests --- test/retry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/retry.js b/test/retry.js index 8f9e207..fc33caf 100644 --- a/test/retry.js +++ b/test/retry.js @@ -45,7 +45,7 @@ test('can be disabled with option', async t => { } }); -test('funcion gets iter count', async t => { +test('function gets iter count', async t => { await got(`${s.url}/fifth`, {timeout: 100, retries: iter => iter < 10}); t.is(fifth, 6); });