Skip to content

Commit 4a8a913

Browse files
committedApr 8, 2016
Merge pull request xmppjs#290 from node-xmpp/pem-upstream
use upstream pem module
2 parents 31e9534 + 4ab4bf5 commit 4a8a913

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"node-xmpp-server": "^2.1.2"
1111
},
1212
"devDependencies": {
13-
"pem": "https://github.com/dodo/pem/tarball/altNames"
13+
"pem": "^1.8.1"
1414
},
1515
"repository": "github:node-xmpp/node-xmpp",
1616
"homepage": "http://github.com/node-xmpp/node-xmpp",

‎test/tls-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ before(function (done) {
1717
var cert_params = {
1818
days: 1,
1919
selfSigned: true,
20-
altNames: ['DNS = localhost', 'IP = 127.0.0.1']
20+
altNames: ['localhost', '127.0.0.1']
2121
}
2222
pem.createCertificate(cert_params, function (err, keys) {
2323
if (err) return done(err)

0 commit comments

Comments
 (0)
Please sign in to comment.