Skip to content

Commit

Permalink
test: force close connections in domain tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Oct 10, 2019
1 parent eb9848b commit 879ae7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/functional/domain_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var test = require('./shared').assert;
var setupDatabase = require('./shared').setupDatabase;

describe('Decimal128', function() {
describe('Domains', function() {
before(function() {
return setupDatabase(this.configuration);
});
Expand Down Expand Up @@ -140,7 +140,7 @@ describe('Decimal128', function() {
test.ok(err != null);
test.ok(process.domain === domainInstance);
domainInstance.exit();
client.close(done);
client.close(true, done);
});
});
});
Expand Down Expand Up @@ -184,7 +184,7 @@ describe('Decimal128', function() {
test.ok(err != null);
test.ok(process.domain === domainInstance);
domainInstance.exit();
client.close(done);
client.close(true, done);
});
});
});
Expand Down

0 comments on commit 879ae7d

Please sign in to comment.