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

Unified Diff: chrome/test/data/extensions/api_test/tabs/basics/crud.js

Issue 24733003: Update defaults for InstantExtended. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 2 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: chrome/test/data/extensions/api_test/tabs/basics/crud.js
diff --git a/chrome/test/data/extensions/api_test/tabs/basics/crud.js b/chrome/test/data/extensions/api_test/tabs/basics/crud.js
index 542d3b284015601434d66c2ab231a6d40b70628f..d0169902ce540218077fddd51447b395c93e4fea 100644
--- a/chrome/test/data/extensions/api_test/tabs/basics/crud.js
+++ b/chrome/test/data/extensions/api_test/tabs/basics/crud.js
@@ -19,7 +19,7 @@ chrome.test.runTests([
assertEq(1, tab.index);
assertEq(firstWindowId, tab.windowId);
assertEq(false, tab.selected);
- assertEq("chrome://newtab/", tab.url);
+ assertEq("chrome-search://local-ntp/local-ntp.html", tab.url);
assertEq(false, tab.pinned);
}));
},
@@ -68,7 +68,7 @@ chrome.test.runTests([
var verify_default = function() {
return pass(function(win) {
assertEq(1, win.tabs.length);
- assertEq("chrome://newtab/", win.tabs[0].url);
+ assertEq("chrome-search://local-ntp/local-ntp.html", win.tabs[0].url);
});
};

Powered by Google App Engine
This is Rietveld 408576698