Skip to content

Commit

Permalink
Bug 1590970 - Fix clang-format from e7956ee3ba1b6d05e3175bbcd795583fd…
Browse files Browse the repository at this point in the history
…e867720 r=me

--HG--
extra : amend_source : 914afbe5fdeb75595c6c61a6798ad9fc082271c6
  • Loading branch information
jcjones committed Oct 29, 2019
1 parent b013a16 commit 4569252
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gtests/ssl_gtest/tls_esni_unittest.cc
Expand Up @@ -386,7 +386,8 @@ TEST_P(TlsConnectTls13, ConnectEsniCSMismatch) {

SECStatus rv = SSL_EncodeESNIKeys(
&kChaChaSuite[0], kChaChaSuite.size(), ssl_grp_ec_curve25519, pub.get(),
100, (now() / PR_USEC_PER_SEC) - 1, (now() / PR_USEC_PER_SEC) + 10, encoded, &encoded_len, sizeof(encoded));
100, (now() / PR_USEC_PER_SEC) - 1, (now() / PR_USEC_PER_SEC) + 10,
encoded, &encoded_len, sizeof(encoded));
ASSERT_EQ(SECSuccess, rv);
ASSERT_LT(0U, encoded_len);
rv = SSL_SetESNIKeyPair(server_->ssl_fd(), priv.get(), encoded, encoded_len);
Expand Down

0 comments on commit 4569252

Please sign in to comment.