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

Unified Diff: mojo/edk/embedder/embedder_unittest.cc

Issue 1374263004: Fix other build errors from r352208. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years, 2 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
« no previous file with comments | « no previous file | mojo/edk/system/data_pipe_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/embedder/embedder_unittest.cc
diff --git a/mojo/edk/embedder/embedder_unittest.cc b/mojo/edk/embedder/embedder_unittest.cc
index 4507328cb76214bc55b17b6db64e566280f75e06..f74b9a2709303df7b9954587f8b4b3fff3d0eb6b 100644
--- a/mojo/edk/embedder/embedder_unittest.cc
+++ b/mojo/edk/embedder/embedder_unittest.cc
@@ -132,7 +132,7 @@ TEST_F(EmbedderTest, SendReadableMessagePipe) {
&num_ports, MOJO_READ_MESSAGE_FLAG_NONE));
EXPECT_EQ(write_size, num_bytes);
EXPECT_STREQ(kHello, read_buffer);
- EXPECT_EQ(1, num_ports);
+ EXPECT_EQ(1u, num_ports);
client_mp2 = ports[0];
@@ -147,7 +147,7 @@ TEST_F(EmbedderTest, SendReadableMessagePipe) {
&num_ports, MOJO_READ_MESSAGE_FLAG_NONE));
EXPECT_EQ(write_size, num_bytes);
EXPECT_STREQ(kHello, read_buffer);
- EXPECT_EQ(1, num_ports);
+ EXPECT_EQ(1u, num_ports);
EXPECT_EQ(MOJO_RESULT_OK, MojoClose(server_mp3));
« no previous file with comments | « no previous file | mojo/edk/system/data_pipe_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698