Skip to content

Commit

Permalink
test: simplify test-tls-client-default-ciphers
Browse files Browse the repository at this point in the history
  • Loading branch information
maclover7 committed Aug 24, 2017
1 parent 342c5f9 commit 54defc0
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions test/parallel/test-tls-client-default-ciphers.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,8 @@ function test1() {
throw new Done();
};

try {
tls.connect(common.PORT);
} catch (e) {
assert(e instanceof Done);
}
assert.throws(tls.connect, Done);

assert.strictEqual(ciphers, tls.DEFAULT_CIPHERS);
}
test1();

0 comments on commit 54defc0

Please sign in to comment.