Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: use common.fixtures in tls test (drop leading dir slash)
  • Loading branch information
Ben Michel committed Oct 9, 2017
commit 7ad1abed9de68bd72da517be4a5e36ce63a18849
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 @@ -34,8 +34,8 @@ let received = 0;
const maxChunk = 768;

const server = tls.createServer({
key: fixtures.readKey('/agent1-key.pem'),
cert: fixtures.readKey('/agent1-cert.pem')
key: fixtures.readKey('agent1-key.pem'),
cert: fixtures.readKey('agent1-cert.pem')
}, function(c) {
// Lower and upper limits
assert(!c.setMaxSendFragment(511));
Expand Down