Skip to content

Commit

Permalink
Bug 1577803, clang-format, a=bustage
Browse files Browse the repository at this point in the history
  • Loading branch information
ueno committed Nov 6, 2019
1 parent c1f069a commit 1534d56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gtests/pk11_gtest/pk11_module_unittest.cc
Expand Up @@ -52,8 +52,7 @@ TEST_F(Pkcs11ModuleTest, ListSlots) {
const std::vector<std::string> kSlotsWithToken = {
"NSS Internal Cryptographic Services",
"NSS User Private Key and Certificate Services",
"Test PKCS11 Public Certs Slot",
"Test PKCS11 Slot 二"};
"Test PKCS11 Public Certs Slot", "Test PKCS11 Slot 二"};
std::vector<std::string> foundSlots;

do {
Expand All @@ -76,7 +75,8 @@ TEST_F(Pkcs11ModuleTest, PublicCertificatesToken) {
EXPECT_NE(nullptr, slot1);
EXPECT_FALSE(PK11_IsFriendly(slot1.get()));

ScopedPK11SlotInfo slot2(PK11_FindSlotByName(kPublicCertificatesToken.c_str()));
ScopedPK11SlotInfo slot2(
PK11_FindSlotByName(kPublicCertificatesToken.c_str()));
EXPECT_NE(nullptr, slot2);
EXPECT_TRUE(PK11_IsFriendly(slot2.get()));
}
Expand Down

0 comments on commit 1534d56

Please sign in to comment.