Fix assertion

This commit is contained in:
Daniel García Aubert 2018-02-13 16:10:08 +01:00
parent 08183bf083
commit 88c0751f52

View File

@ -34,7 +34,7 @@ describe('Auth API', function () {
this.testClient = new TestClient({ apiKey: 1234 }); this.testClient = new TestClient({ apiKey: 1234 });
this.testClient.getResult(publicSQL, (err, result) => { this.testClient.getResult(publicSQL, (err, result) => {
assert.ifError(err); assert.ifError(err);
assert.equal(result.length, 5); assert.equal(result.length, 6);
done(); done();
}); });
}); });