summaryrefslogtreecommitdiffstats
path: root/device/bluetooth/bluetooth_device_win_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'device/bluetooth/bluetooth_device_win_unittest.cc')
-rw-r--r--device/bluetooth/bluetooth_device_win_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/device/bluetooth/bluetooth_device_win_unittest.cc b/device/bluetooth/bluetooth_device_win_unittest.cc
index c9d48a3..0fb9d32 100644
--- a/device/bluetooth/bluetooth_device_win_unittest.cc
+++ b/device/bluetooth/bluetooth_device_win_unittest.cc
@@ -86,12 +86,12 @@ class BluetoothDeviceWinTest : public testing::Test {
TEST_F(BluetoothDeviceWinTest, GetUUIDs) {
BluetoothDevice::UUIDList uuids = device_->GetUUIDs();
- EXPECT_EQ(2, uuids.size());
+ EXPECT_EQ(2u, uuids.size());
EXPECT_EQ(kTestAudioSdpUuid, uuids[0]);
EXPECT_EQ(kTestVideoSdpUuid, uuids[1]);
uuids = empty_device_->GetUUIDs();
- EXPECT_EQ(0, uuids.size());
+ EXPECT_EQ(0u, uuids.size());
}
TEST_F(BluetoothDeviceWinTest, IsEqual) {