Skip to content

Commit

Permalink
Fix test output/debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef Fröhle committed Feb 24, 2015
1 parent 6e3429f commit 2dc06e2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/pem.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ exports['General Tests'] = {
'Create default sized dhparam key': function(test) {
pem.createDhparam(function(error, data) {
var dhparam = (data && data.dhparam || '').toString();
console.log(dhparam.length);
test.ifError(error);
test.ok(dhparam);
test.ok(dhparam.match(/^\n*\-\-\-\-\-BEGIN DH PARAMETERS\-\-\-\-\-\n/));
Expand All @@ -28,7 +27,6 @@ exports['General Tests'] = {
'Create 2048bit dhparam key': function(test) {
pem.createDhparam(2048, function(error, data) {
var dhparam = (data && data.dhparam || '').toString();
console.log(dhparam.length);
test.ifError(error);
test.ok(dhparam);
test.ok(dhparam.match(/^\n*\-\-\-\-\-BEGIN DH PARAMETERS\-\-\-\-\-\n/));
Expand Down

0 comments on commit 2dc06e2

Please sign in to comment.