Skip to content

Commit

Permalink
add missing '.' at comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eladkishon committed Apr 10, 2021
1 parent b2fd63d commit 6a269bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-tls-max-send-fragment.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ const server = tls.createServer({
cert: fixtures.readKey('agent1-cert.pem')
}, function(c) {

// No size is passed
// No size is passed.
assert.throws(() => c.setMaxSendFragment(), invalidArgumentError);

// Invalid arg is passed
// Invalid arg is passed.
[null, undefined, '', {}, false, true, []].forEach((arg) => {
assert.throws(() => c.setMaxSendFragment(arg), invalidArgumentError);
});
Expand Down

0 comments on commit 6a269bd

Please sign in to comment.