summaryrefslogtreecommitdiff
path: root/src/components/resumption/test/last_state_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/resumption/test/last_state_test.cc')
-rw-r--r--src/components/resumption/test/last_state_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/resumption/test/last_state_test.cc b/src/components/resumption/test/last_state_test.cc
index 15180fa12c..c82af2450c 100644
--- a/src/components/resumption/test/last_state_test.cc
+++ b/src/components/resumption/test/last_state_test.cc
@@ -110,10 +110,10 @@ TEST_F(LastStateTest, SetGetData) {
const Value& bluetooth_info =
dictionary["TransportManager"]["BluetoothAdapter"];
const Value& tcp_adapter_info = dictionary["TransportManager"]["TcpAdapter"];
- EXPECT_EQ("{\n \"devices\" : \"bluetooth_device\"\n}\n",
+ EXPECT_EQ("{\n\t\"devices\" : \"bluetooth_device\"\n}\n",
bluetooth_info.toStyledString());
EXPECT_EQ(
- "{\n \"devices\" : {\n \"name\" : \"test_device\"\n }\n}\n",
+ "{\n\t\"devices\" : \n\t{\n\t\t\"name\" : \"test_device\"\n\t}\n}\n",
tcp_adapter_info.toStyledString());
}