Skip to content

Commit

Permalink
test: fix typo, '<' instead of '<='
Browse files Browse the repository at this point in the history
  • Loading branch information
nils91 committed Apr 4, 2021
1 parent 0af7e2e commit de29db8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ if (!common.hasCrypto)

const crypto = require('crypto');

// This test will fail for OpenSSL <= 1.1.1h
// This test will fail for OpenSSL < 1.1.1h
const minOpenSSL = 269488271;

if (crypto.constants.OPENSSL_VERSION_NUMBER <= minOpenSSL)
common.skip('OpenSSL <= 1.1.1h');
if (crypto.constants.OPENSSL_VERSION_NUMBER < minOpenSSL)
common.skip('OpenSSL < 1.1.1h');

const https = require('https');

Expand Down

0 comments on commit de29db8

Please sign in to comment.