Fix error message in assertion

This commit is contained in:
Daniel García Aubert 2016-12-19 16:13:55 +01:00
parent 4b817062d8
commit 2ace705122

View File

@ -228,7 +228,7 @@ describe('tests from old api translated to multilayer', function() {
},
function(res) {
var parsed = JSON.parse(res.body);
assert.deepEqual(parsed.errors, [ 'Unexpected token W' ]);
assert.deepEqual(parsed.errors, [ 'Unexpected token W in JSON at position 0' ]);
done();
}