Update the tests to allow for the new CSV format

This commit is contained in:
Rowan Manning
2014-01-13 09:37:16 +00:00
parent ddbb0db33d
commit f97e224679

View File

@@ -20,7 +20,7 @@ describe('GET /<task-id>/<result-id>.csv', function () {
}); });
it('should output CSV results', function () { it('should output CSV results', function () {
assert.match(this.last.body, /^"code", "message", "type"/); assert.match(this.last.body, /^"code","message","type"/);
}); });
}); });