Index: third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/delayed-discovery-service-with-uuid-not-found.html |
diff --git a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/delayed-discovery-service-with-uuid-not-found.html b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/delayed-discovery-service-with-uuid-not-found.html |
index 15219a950f1820accf4e2779072da50859ed4f28..69141c09bf286a6a714c712b3bb3a4c87905de74 100644 |
--- a/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/delayed-discovery-service-with-uuid-not-found.html |
+++ b/third_party/WebKit/LayoutTests/bluetooth/server/getPrimaryServices/delayed-discovery-service-with-uuid-not-found.html |
@@ -13,7 +13,7 @@ promise_test(() => { |
.then(gattServer => { |
return assert_promise_rejects_with_message( |
gattServer.getPrimaryServices('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 with UUID. Must reject with NotFoundError ' + |