From bd99d4dbee3cd74956c25ce780027eb05aabf34a Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Wed, 17 May 2017 15:19:07 +0700 Subject: [PATCH] requests => responses --- test/cache.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cache.js b/test/cache.js index 5f300e7..9572d64 100644 --- a/test/cache.js +++ b/test/cache.js @@ -23,7 +23,7 @@ test.before('setup', async () => { await s.listen(s.port); }); -test('Non cacheable requests are not cached', async t => { +test('Non cacheable responses are not cached', async t => { const endpoint = '/no-cache'; const cache = new Map(); @@ -33,7 +33,7 @@ test('Non cacheable requests are not cached', async t => { t.is(secondResponse, (firstResponse + 1)); }); -test('Cacheable requests are cached', async t => { +test('Cacheable responses are cached', async t => { const endpoint = '/cache'; const cache = new Map();