We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 958388a commit da49303Copy full SHA for da49303
packages/pg/test/integration/client/network-partition-tests.js
@@ -11,6 +11,7 @@ var Server = function (response) {
11
this.response = response
12
}
13
14
+let port = 54321
15
Server.prototype.start = function (cb) {
16
// this is our fake postgres server
17
// it responds with our specified response immediatley after receiving every buffer
@@ -39,7 +40,7 @@ Server.prototype.start = function (cb) {
39
40
}.bind(this)
41
)
42
- var port = 54321
43
+ port = port + 1
44
45
var options = {
46
host: 'localhost',
0 commit comments