Skip to content

Commit

Permalink
try get away other callback deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollon77 committed May 9, 2024
1 parent 3b30980 commit 05e914e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion test/testSerial.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ describe('Native libmbus node-module Serial test ...', function() {
}, 1000);
}, 1000);
});
expect(mbusMaster.mbusMaster.communicationInProgress).to.be.true;
expect(mbusMaster.close()).to.be.false;
mbusMaster.getData(3, function(err, data) {
expect(err.message).to.be.equal('Communication already in progress');
Expand Down
1 change: 0 additions & 1 deletion test/testTcp.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ describe('Native libmbus node-module TCP test ...', function() {
});
}, 1000);
});
expect(mbusMaster.mbusMaster.communicationInProgress).to.be.true;
expect(mbusMaster.close()).to.be.false;
mbusMaster.getData(3, function(err, data) {
expect(err.message).to.be.equal('Communication already in progress');
Expand Down
1 change: 0 additions & 1 deletion test/testTcpIPV6.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ describe('Native libmbus node-module TCP-IPv6 test ...', function() {
});
}, 1000);
});
expect(mbusMaster.mbusMaster.communicationInProgress).to.be.true;
expect(mbusMaster.close()).to.be.false;
mbusMaster.getData(3, function(err, data) {
expect(err.message).to.be.equal('Communication already in progress');
Expand Down

0 comments on commit 05e914e

Please sign in to comment.