★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/b1cbbbc7afNouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files

test: move require of https to after crypto check

Currently when configured without-ssl test-request-arguments.js will
fail with a missing crypto message.
This commit moves the require of https to after the crypto check.

PR-URL: #22148
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
  • Loading branch information...
danbev authored and rvagg committed Aug 6, 2018
1 parent a6ab19a commit b1cbbbc7af7303cc913f501d7296e80f34eca7a1
Showing with 1 addition and 1 deletion.
  1. +1 −1 test/parallel/test-https-request-arguments.js
@@ -1,11 +1,11 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const https = require('https');
const fixtures = require('../common/fixtures');

if (!common.hasCrypto)
common.skip('missing crypto');
const https = require('https');

const options = {
key: fixtures.readKey('agent1-key.pem'),

0 comments on commit b1cbbbc

Please sign in to comment.
You can’t perform that action at this time.