Skip to content

Commit

Permalink
Fixed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
parthverma1 committed Jul 11, 2024
1 parent 4924fe0 commit a4bcf3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test-tunnel-response.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ function addTests () {
}, [
'http connect to localhost:' + ss2.port,
// it should bubble up the key mismatch error
process.versions.node.split('.')[0] < 18 ?'err error:05800074:x509 certificate routines::key values mismatch' :
'err error:05800074:x509 certificate routines::key values mismatch'
process.versions.node.split('.')[0] < 18 ? 'err error:05800074:x509 certificate routines::key values mismatch'
: 'err error:05800074:x509 certificate routines::key values mismatch'
])
}

Expand Down
4 changes: 2 additions & 2 deletions tests/test-tunnel.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,8 @@ function addTests () {
}, [
'http connect to localhost:' + ss2.port,
// it should bubble up the key mismatch error
process.versions.node.split('.')[0] < 18 ?'err error:05800074:x509 certificate routines::key values mismatch' :
'err error:05800074:x509 certificate routines::key values mismatch'
process.versions.node.split('.')[0] < 18 ? 'err error:05800074:x509 certificate routines::key values mismatch'
: 'err error:05800074:x509 certificate routines::key values mismatch'
])
}

Expand Down

0 comments on commit a4bcf3d

Please sign in to comment.