| Index: chrome/test/data/webui/media_router/media_router_container_route_tests.js
|
| diff --git a/chrome/test/data/webui/media_router/media_router_container_route_tests.js b/chrome/test/data/webui/media_router/media_router_container_route_tests.js
|
| index 71a41e8814cab291dd83000f511e06619489e615..eb5a80a74a7864e1f2a52b602997f52420e9888a 100644
|
| --- a/chrome/test/data/webui/media_router/media_router_container_route_tests.js
|
| +++ b/chrome/test/data/webui/media_router/media_router_container_route_tests.js
|
| @@ -254,7 +254,8 @@ cr.define('media_router_container_route', function() {
|
|
|
| // Tests for expected visible UI when the view is ROUTE_DETAILS.
|
| test('route details visibility', function(done) {
|
| - container.showRouteDetails_();
|
| + container.showRouteDetails_(
|
| + new media_router.Route('id 3', 'sink id 3', 'Title 3', 0, true));
|
| setTimeout(function() {
|
| checkElementsVisibleWithId(['container-header',
|
| 'device-missing',
|
| @@ -294,7 +295,8 @@ cr.define('media_router_container_route', function() {
|
| // Tests for expected visible UI when the view is ROUTE_DETAILS, and there
|
| // is a non-blocking issue.
|
| test('route details visibility non blocking issue', function(done) {
|
| - container.showRouteDetails_();
|
| + container.showRouteDetails_(
|
| + new media_router.Route('id 3', 'sink id 3', 'Title 3', 0, true));
|
|
|
| // Set a non-blocking issue. The issue should be shown.
|
| container.issue = fakeNonBlockingIssue;
|
| @@ -309,7 +311,8 @@ cr.define('media_router_container_route', function() {
|
| // Tests for expected visible UI when the view is ROUTE_DETAILS, and there
|
| // is a blocking issue.
|
| test('route details visibility with blocking issue', function(done) {
|
| - container.showRouteDetails_();
|
| + container.showRouteDetails_(
|
| + new media_router.Route('id 3', 'sink id 3', 'Title 3', 0, true));
|
|
|
| // Set a blocking issue. The issue should be shown, and everything
|
| // else, hidden.
|
|
|