Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
09bc0c6
doc: improvements to crypto.markdown copy
jasnell Dec 27, 2015
ac1108d
doc: add missing backtick for readline
mscdex Jan 6, 2016
e703c9a
doc: bring releases.md up to date
cjihrig Jan 5, 2016
ec73c69
doc: add Myles Borins to Release Team
Jan 8, 2016
0126615
doc: add Evan Lucas to Release Team
evanlucas Jan 8, 2016
ff539c5
cluster: ignore queryServer msgs on disconnection
santigimeno Dec 29, 2015
97aaeb8
doc: fix description about the latest-codename
JungMinu Jan 8, 2016
799aa74
net: fix dns lookup for android
daguej Jan 8, 2016
9accebe
net, doc: fix line wrapping lint in net.js
jasnell Jan 8, 2016
b181e26
doc: document http's server.listen return value
Sequoia Jan 8, 2016
fdfc72c
doc: label http.IncomingMessage as a Class
Sequoia Jan 8, 2016
ede98d1
doc: stronger suggestion for userland assert
geek Jan 5, 2016
6f9a96f
test: fix flaky unrefed timers test
Trott Jan 9, 2016
b515ccc
stream: remove useless if test in transform
zoubin Jan 11, 2016
df87176
doc: update stylesheet to match frontpage
silverwind Jan 11, 2016
102fb7d
doc: remove "above" and "below" references
richardsun29 Jan 5, 2016
f28a640
test: only include http module once
Trott Jan 10, 2016
145b668
module: move unnecessary work for early return
zertosh Oct 29, 2015
b14b2ae
test: require common module only once
Trott Jan 10, 2016
37a546b
src: remove redeclarations of variables
Trott Jan 10, 2016
787c5d9
http: remove variable redeclaration
Trott Jan 10, 2016
3912b5c
doc: adds usage of readline line-by-line parsing
eljefedelrodeodeljefe Jan 10, 2016
b70eec8
tls_legacy: do not read on OpenSSL's stack
indutny Jan 6, 2016
ffb7deb
net: remove hot path comment from connect
evanlucas Jan 12, 2016
ea6e26d
test: remove duplicate fork module import
Trott Jan 11, 2016
ff99203
2016-01-12, Version 5.4.1 (Stable)
Jan 11, 2016
e7d1c69
Working on v5.4.2
Jan 11, 2016
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
Next Next commit
test: require common module only once
Two tests were requiring the common module twice. This removes the
duplicate require statement in the tests.

PR-URL: #4611
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott authored and Myles Borins committed Jan 12, 2016
commit b14b2aec5e2d1491abee5a871db2451cbd9a5965
2 changes: 0 additions & 2 deletions test/parallel/test-tls-0-dns-altname.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ var tls = require('tls');

var fs = require('fs');

var common = require('../common');

var requests = 0;

var server = tls.createServer({
Expand Down
2 changes: 0 additions & 2 deletions test/parallel/test-tls-max-send-fragment.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ var tls = require('tls');

var fs = require('fs');

var common = require('../common');

var buf = new Buffer(10000);
var received = 0;
var ended = 0;
Expand Down