Skip to content

Commit

Permalink
reduce number of connections on test
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangut committed Sep 28, 2021
1 parent 665f5c1 commit b1b571f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/smpp.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ describe('Client/Server simulations', function() {
});

it('should successfully have multiple sessions opened at the same time, closing them all afterwards', function (done) {
var totalConnections = 500;
var totalConnections = 100;
var closedConnections = 0;
for (var i = 0; i < totalConnections; i++) {
smpp.connect({port: port}, function (session) {
Expand Down

0 comments on commit b1b571f

Please sign in to comment.