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

Unified Diff: LayoutTests/bluetooth/readValue.html

Issue 1174843002: Add tests for RequestDeviceOptions and clean up. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pinned
Patch Set: Comment how the ScanFilterCheckingAdapter test works Created 5 years, 6 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: LayoutTests/bluetooth/readValue.html
diff --git a/LayoutTests/bluetooth/readValue.html b/LayoutTests/bluetooth/readValue.html
index e2221a55b4e2ff46570aeca07fab69a34d66f889..61f7c55e158db8fe81fda922b0f668eb9168988b 100644
--- a/LayoutTests/bluetooth/readValue.html
+++ b/LayoutTests/bluetooth/readValue.html
@@ -71,8 +71,7 @@ sequential_promise_test(function() {
}).then(function(value) {
var decoder = new TextDecoder('utf-8');
var value_str = decoder.decode(value);
- // TODO: Remove the .slice after https://crrev.com/1172853004 is in.
- assert_equals(value_str.slice(0, 17), 'Empty Mock Device');
+ assert_equals(value_str, 'Empty Mock Device');
});
}, 'Request for characteristic. Should return right characteristic');
</script>

Powered by Google App Engine
This is Rietveld 408576698