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 |