projects
/
platform
/
core
/
security
/
webauthn-ble.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d75f29
)
Remove unnecessary logging from CBOR tests
73/308573/1
author
Krzysztof Malysa
<k.malysa@samsung.com>
Wed, 27 Mar 2024 17:48:38 +0000
(18:48 +0100)
committer
Krzysztof Malysa
<k.malysa@samsung.com>
Wed, 27 Mar 2024 17:48:38 +0000
(18:48 +0100)
Change-Id: Id86db9b60d21d87ba9efb18eb2f49dcff8dbd45f
tests/cbor_tests.cpp
patch
|
blob
|
history
diff --git
a/tests/cbor_tests.cpp
b/tests/cbor_tests.cpp
index b457a64a57a87b1aa40bc9ba3057751bb4aaebe0..75fbb2744f362adf72dea953a94cf738d4ef441e 100644
(file)
--- a/
tests/cbor_tests.cpp
+++ b/
tests/cbor_tests.cpp
@@
-181,7
+181,7
@@
TEST(CborEncoding, testCborDocsExample1)
MockCbor cb;
EXPECT_NO_THROW(cb.EncodeQRContents(PUBKEY_EXAMPLE_1, SECRET_EXAMPLE_1, MC, true, str));
- EXPECT_EQ(str, exp)
<< "[EncodeQRContents] failed." << std::endl
;
+ EXPECT_EQ(str, exp);
}
TEST(CborEncoding, testCborDocsExample2)
@@
-200,7
+200,7
@@
TEST(CborEncoding, testCborDocsExample2)
MockCbor cb;
EXPECT_NO_THROW(cb.EncodeQRContents(PUBKEY_EXAMPLE_2, SECRET_EXAMPLE_2, GA, true, str));
- EXPECT_EQ(str, exp)
<< "[EncodeQRContents] failed." << std::endl
;
+ EXPECT_EQ(str, exp);
}
TEST(CborEncoding, EmptyBuffers)