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

Unified Diff: chromecast/base/process_utils_unittest.cc

Issue 1198153003: cast_shell_android buildfix: remove stderr reference. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/base/process_utils_unittest.cc
diff --git a/chromecast/base/process_utils_unittest.cc b/chromecast/base/process_utils_unittest.cc
index 1d51f8ee3631316f4257292d0aa1f8744bc813bb..f9c2a0d7d8cad42c0adce5abe36bd7067074a5f3 100644
--- a/chromecast/base/process_utils_unittest.cc
+++ b/chromecast/base/process_utils_unittest.cc
@@ -44,9 +44,9 @@ TEST(ProcessUtilsTest, ProcessReturnsError) {
// Execute the command and collect the output. Verify that the output of the
// process is collected, even when the process returns an error code.
- std::string stderr;
- ASSERT_FALSE(GetAppOutput(args, &stderr));
- ASSERT_FALSE(stderr.empty());
+ std::string stderr_result;
+ ASSERT_FALSE(GetAppOutput(args, &stderr_result));
+ ASSERT_FALSE(stderr_result.empty());
}
} // namespace chromecast
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698