Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2483)

Unified Diff: content/browser/bluetooth/bluetooth_blocklist_unittest.cc

Issue 2466223002: Implement WebBluetooth getDescriptor[s] (Closed)
Patch Set: Updating cross-origin-objects-exceptions.html Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/bluetooth/bluetooth_blocklist_unittest.cc
diff --git a/content/browser/bluetooth/bluetooth_blocklist_unittest.cc b/content/browser/bluetooth/bluetooth_blocklist_unittest.cc
index 9e171ca4eaec2f041f430aee2cc8ebf7b4665b17..e0186e532117c718c17c2fe7cd13324e4f5b3e62 100644
--- a/content/browser/bluetooth/bluetooth_blocklist_unittest.cc
+++ b/content/browser/bluetooth/bluetooth_blocklist_unittest.cc
@@ -423,7 +423,7 @@ TEST_F(BluetoothBlocklistTest, RemoveExcludedUuids_Matching) {
TEST_F(BluetoothBlocklistTest, VerifyDefaultBlocklistSize) {
// REMINDER: ADD new blocklist items to tests below for each exclusion type.
- EXPECT_EQ(13u, list_.size());
+ EXPECT_EQ(14u, list_.size());
}
TEST_F(BluetoothBlocklistTest, VerifyDefaultExcludeList) {
@@ -447,6 +447,7 @@ TEST_F(BluetoothBlocklistTest, VerifyDefaultExcludeList) {
list_.IsExcluded(BluetoothUUID("bad2ddcf-60db-45cd-bef9-fd72b153cf7c")));
EXPECT_FALSE(
list_.IsExcluded(BluetoothUUID("bad3ec61-3cc3-4954-9702-7977df514114")));
+ EXPECT_TRUE(list_.IsExcluded(BluetoothUUID("bad0")));
}
TEST_F(BluetoothBlocklistTest, VerifyDefaultExcludeReadList) {

Powered by Google App Engine
This is Rietveld 408576698