From a1a4f6d1f95999b07eba365bd77530afdd3dd782 Mon Sep 17 00:00:00 2001 From: Douglas Christopher Wilson Date: Mon, 21 Mar 2022 23:45:54 -0400 Subject: [PATCH] tests: fix typo in test description --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index a85c1cd..f837ba5 100644 --- a/test/test.js +++ b/test/test.js @@ -277,7 +277,7 @@ describe('finalhandler(req, res)', function () { .expect(404, done) }) - it('should includeContent-Security-Policy header', function (done) { + it('should include Content-Security-Policy header', function (done) { request(createServer()) .get('/foo') .expect('Content-Security-Policy', "default-src 'none'")