From f97e2246795f9b61bfec9a6f644594300238d1fd Mon Sep 17 00:00:00 2001 From: Rowan Manning Date: Mon, 13 Jan 2014 09:37:16 +0000 Subject: [PATCH] Update the tests to allow for the new CSV format --- test/functional/route/result/download.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/route/result/download.js b/test/functional/route/result/download.js index fb805ea..a26ca44 100644 --- a/test/functional/route/result/download.js +++ b/test/functional/route/result/download.js @@ -20,7 +20,7 @@ describe('GET //.csv', function () { }); it('should output CSV results', function () { - assert.match(this.last.body, /^"code", "message", "type"/); + assert.match(this.last.body, /^"code","message","type"/); }); });