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

Unified Diff: third_party/crashpad/crashpad/util/numeric/int128_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/util/numeric/int128_test.cc
diff --git a/third_party/crashpad/crashpad/util/numeric/int128_test.cc b/third_party/crashpad/crashpad/util/numeric/int128_test.cc
index 90dfdb2f4ea9c04c460c8ece305c914bf7baf9fa..e0b459997f12d3da1ec9198044400024a85559db 100644
--- a/third_party/crashpad/crashpad/util/numeric/int128_test.cc
+++ b/third_party/crashpad/crashpad/util/numeric/int128_test.cc
@@ -35,8 +35,8 @@ TEST(Int128, UInt128) {
uint128 = bit_cast<uint128_struct>(kBytes);
- EXPECT_EQ(0x0706050403020100u, uint128.lo);
- EXPECT_EQ(0x0f0e0d0c0b0a0908u, uint128.hi);
+ EXPECT_EQ(uint128.lo, 0x0706050403020100u);
+ EXPECT_EQ(uint128.hi, 0x0f0e0d0c0b0a0908u);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698