summaryrefslogtreecommitdiffstats
path: root/dbus/end_to_end_async_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/end_to_end_async_unittest.cc')
-rw-r--r--dbus/end_to_end_async_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/end_to_end_async_unittest.cc b/dbus/end_to_end_async_unittest.cc
index 0a3446e..6943494 100644
--- a/dbus/end_to_end_async_unittest.cc
+++ b/dbus/end_to_end_async_unittest.cc
@@ -185,7 +185,7 @@ class EndToEndAsyncTest : public testing::Test {
ASSERT_TRUE(reader.PopString(&response_string));
response_strings_.push_back(response_string);
} else {
- response_strings_.push_back("");
+ response_strings_.push_back(std::string());
}
message_loop_.Quit();
};
@@ -205,7 +205,7 @@ class EndToEndAsyncTest : public testing::Test {
ASSERT_NE("", error->GetErrorName());
error_names_.push_back(error->GetErrorName());
} else {
- error_names_.push_back("");
+ error_names_.push_back(std::string());
}
message_loop_.Quit();
}