Commit f78a909b authored by satorux@chromium.org's avatar satorux@chromium.org

Fix typos in the message test.

TEST=run dbus_unittests
BUG=none

Review URL: http://codereview.chromium.org/7669006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97055 0039d316-1c4b-4281-b951-d872f2087c98
parent 51bf161f
......@@ -380,7 +380,7 @@ TEST(MessageTest, Response) {
EXPECT_EQ(dbus::Message::MESSAGE_METHOD_RETURN, response.GetMessageType());
}
TEST(MergeTest, Response_FromMethodCall) {
TEST(MessageTest, Response_FromMethodCall) {
const uint32 kSerial = 123;
dbus::MethodCall method_call("com.example.Interface", "SomeMethod");
method_call.SetSerial(kSerial);
......@@ -392,7 +392,7 @@ TEST(MergeTest, Response_FromMethodCall) {
EXPECT_EQ(kSerial, response->GetReplySerial());
}
TEST(MergeTest, ErrorResponse) {
TEST(MessageTest, ErrorResponse) {
dbus::ErrorResponse error_response;
EXPECT_TRUE(error_response.raw_message() == NULL);
error_response.reset_raw_message(
......@@ -400,7 +400,7 @@ TEST(MergeTest, ErrorResponse) {
EXPECT_EQ(dbus::Message::MESSAGE_ERROR, error_response.GetMessageType());
}
TEST(MergeTest, ErrorResponse_FromMethodCall) {
TEST(MessageTest, ErrorResponse_FromMethodCall) {
const uint32 kSerial = 123;
const char kErrorMessage[] = "error message";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment