Comments & cleanup

This commit is contained in:
Brian M. Carlson 2020-10-08 13:56:59 -05:00
parent ba231d5a65
commit ab995bbdcf
2 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,6 @@ class Query extends EventEmitter {
this.isPreparedStatement = false
this._canceledDueToError = false
this._promise = null
this._hasSentSync = false
}
requiresPreparation() {

View File

@ -4,6 +4,8 @@ var assert = require('assert')
const suite = new helper.Suite()
// allow skipping of this test via env var for
// local testing when you don't have SSL set up
if (process.env.PGTESTNOSSL) {
return
}