Skip to content

Commit 4193a6e

Browse files
restyled-commitsmbknust
authored andcommitted
Restyled by clang-format
1 parent c40836a commit 4193a6e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/asn1/tests/TestASN1.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
#include <lib/asn1/ASN1Macros.h>
3535
#include <lib/core/TLV.h>
3636

37-
3837
using namespace chip;
3938
using namespace chip::ASN1;
4039
using namespace chip::TLV;
@@ -371,8 +370,8 @@ TEST(TestASN1, ASN1UniversalTime)
371370

372371
EXPECT_EQ(result.ImportFrom_ASN1_TIME_string(testStr), CHIP_NO_ERROR);
373372
EXPECT_TRUE(result.Year == testCase.asn1Time.Year && result.Month == testCase.asn1Time.Month &&
374-
result.Day == testCase.asn1Time.Day && result.Hour == testCase.asn1Time.Hour &&
375-
result.Minute == testCase.asn1Time.Minute && result.Second == testCase.asn1Time.Second);
373+
result.Day == testCase.asn1Time.Day && result.Hour == testCase.asn1Time.Hour &&
374+
result.Minute == testCase.asn1Time.Minute && result.Second == testCase.asn1Time.Second);
376375

377376
char buf[ASN1UniversalTime::kASN1TimeStringMaxLength];
378377
MutableCharSpan resultTimeStr(buf);
@@ -432,7 +431,8 @@ TEST(TestASN1, ObjectID)
432431

433432
ASN1_PARSE_ELEMENT(kASN1TagClass_Universal, kASN1UniversalTag_ObjectId);
434433
EXPECT_EQ(reader.GetValueLen(), sizeof(sOID_Extension_AuthorityKeyIdentifier));
435-
EXPECT_EQ(memcmp(reader.GetValue(), sOID_Extension_AuthorityKeyIdentifier, sizeof(sOID_Extension_AuthorityKeyIdentifier)), 0);
434+
EXPECT_EQ(memcmp(reader.GetValue(), sOID_Extension_AuthorityKeyIdentifier, sizeof(sOID_Extension_AuthorityKeyIdentifier)),
435+
0);
436436

437437
ASN1_PARSE_ELEMENT(kASN1TagClass_Universal, kASN1UniversalTag_ObjectId);
438438
EXPECT_EQ(reader.GetValueLen(), sizeof(sOID_Extension_BasicConstraints));

0 commit comments

Comments
 (0)