From df2617f7c7016f9ebad742413c508ae41471ce1d Mon Sep 17 00:00:00 2001 From: Technoboy10 Date: Wed, 26 Jul 2017 20:10:58 -0600 Subject: [PATCH] Hotfix: fix tests (GH pages change) --- tests/integration/cors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/cors.js b/tests/integration/cors.js index dddba9c..17b0146 100644 --- a/tests/integration/cors.js +++ b/tests/integration/cors.js @@ -22,7 +22,7 @@ describe('GET with CORS', function () { .get('/http://technoboy10.tk/scratch2015.html') .set('Origin', 'http://example.com') .expect('Access-Control-Allow-Origin', '*') - .expect(302, done); // For some reason I'm getting 302 statuses instead of 200??? + .expect(203, done); // For some reason I'm getting 203 statuses instead of 200 }); });