Skip to content

Commit

Permalink
Updating tests to close the bad connection
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin French-Owen committed Sep 28, 2012
1 parent 8c70911 commit dc6df14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/cql2.js
Expand Up @@ -33,6 +33,7 @@ module.exports = {
assert.isDefined(err);
badConn.cql(config['create_ks#cql'], function(err, res){
assert.isDefined(err);
badConn.close();
test.finish();
});
});
Expand Down
1 change: 1 addition & 0 deletions test/cql3.js
Expand Up @@ -60,6 +60,7 @@ module.exports = {
assert.isDefined(err);
badConn.cql(config['create_ks#cql'], function(err, res){
assert.isDefined(err);
badConn.close();
test.finish();
});
});
Expand Down
1 change: 1 addition & 0 deletions test/thrift.js
Expand Up @@ -47,6 +47,7 @@ module.exports = {
assert.isDefined(err);
badConn.dropKeyspace(config.keyspace, function(err){
assert.isDefined(err);
badConn.close();
test.finish();
});
});
Expand Down

0 comments on commit dc6df14

Please sign in to comment.