Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Unified Diff: third_party/crashpad/crashpad/test/hex_string_test.cc

Issue 2804713002: Update Crashpad to b4095401639ebe2ad33169e5c1d994065cbff1b8 (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/test/hex_string_test.cc
diff --git a/third_party/crashpad/crashpad/test/hex_string_test.cc b/third_party/crashpad/crashpad/test/hex_string_test.cc
index 62b45c1260ed1d17223b312c4be51ab10cf791f1..1915a8565a424803f4d22b8ee5a1e49e9996c88c 100644
--- a/third_party/crashpad/crashpad/test/hex_string_test.cc
+++ b/third_party/crashpad/crashpad/test/hex_string_test.cc
@@ -22,11 +22,11 @@ namespace test {
namespace {
TEST(HexString, HexString) {
- EXPECT_EQ("", BytesToHexString(nullptr, 0));
+ EXPECT_EQ(BytesToHexString(nullptr, 0), "");
const char kBytes[] = "Abc123xyz \x0a\x7f\xf0\x9f\x92\xa9_";
- EXPECT_EQ("41626331323378797a200a7ff09f92a95f00",
- BytesToHexString(kBytes, arraysize(kBytes)));
+ EXPECT_EQ(BytesToHexString(kBytes, arraysize(kBytes)),
+ "41626331323378797a200a7ff09f92a95f00");
}
} // namespace
« no previous file with comments | « third_party/crashpad/crashpad/test/hex_string.h ('k') | third_party/crashpad/crashpad/test/mac/mach_errors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698