Use name in test

This commit is contained in:
Raul Ochoa 2016-10-10 19:46:39 +02:00
parent 66820a67bb
commit a0ace8d034

View File

@ -8,8 +8,8 @@ var JobStatus = require('../../../batch/job_status');
describe('multiple batch clients job query order', function() {
before(function(done) {
this.batchTestClient1 = new BatchTestClient();
this.batchTestClient2 = new BatchTestClient();
this.batchTestClient1 = new BatchTestClient({ name: 'consumerA' });
this.batchTestClient2 = new BatchTestClient({ name: 'consumerB' });
this.testClient = new TestClient();
this.testClient.getResult('create table ordered_inserts (status numeric)', done);