Chromium Code Reviews| Index: sandbox/linux/tests/unit_tests.cc |
| diff --git a/sandbox/linux/tests/unit_tests.cc b/sandbox/linux/tests/unit_tests.cc |
| index 63fbb2b61b9d7e83c961c4a274e5ad0351bbdf03..5d6cf30f216a84aa32715224660ca7477305e35d 100644 |
| --- a/sandbox/linux/tests/unit_tests.cc |
| +++ b/sandbox/linux/tests/unit_tests.cc |
| @@ -16,7 +16,7 @@ |
| namespace { |
| std::string TestFailedMessage(const std::string& msg) { |
| - return msg.empty() ? "" : "Actual test failure: " + msg; |
| + return msg.empty() ? std::string() : "Actual test failure: " + msg; |
| } |
| int GetSubProcessTimeoutTimeInSeconds() { |