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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/delayed-discovery-service-not-found.html

Issue 2680783002: bluetooth: show better error messages for services, characteristics and descriptors (Closed)
Patch Set: Added comment and changed to enum class. Created 3 years, 10 months 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: third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/delayed-discovery-service-not-found.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/delayed-discovery-service-not-found.html b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/delayed-discovery-service-not-found.html
index f53da55d80bcf4a6f5fe38a22d5a0c8875360005..f919af15ed8e5d65af1757250c0cd2943c578a95 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/delayed-discovery-service-not-found.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryService/delayed-discovery-service-not-found.html
@@ -13,7 +13,7 @@ promise_test(() => {
.then(gattServer => {
return assert_promise_rejects_with_message(
gattServer.getPrimaryService('battery_service'),
- new DOMException('No Services with specified UUID found in Device.',
+ new DOMException('No Services matching UUID ' + battery_service.uuid + ' found in Device.',
'NotFoundError'));
});
}, 'Request for absent service. Must reject with NotFoundError even when the ' +

Powered by Google App Engine
This is Rietveld 408576698