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

Unified Diff: chrome/install_static/product_install_details_unittest.cc

Issue 2802713002: Enable side-by-side beta and dev channels. (Closed)
Patch Set: add missing test stanza for reland Created 3 years, 8 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
« no previous file with comments | « chrome/install_static/install_util_unittest.cc ('k') | chrome/installer/mini_installer/appid.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/install_static/product_install_details_unittest.cc
diff --git a/chrome/install_static/product_install_details_unittest.cc b/chrome/install_static/product_install_details_unittest.cc
index 582921db2a1a49a6602e1e7ba763994db038f8da..57d33bb35becf30165e9efa1b16baac6cf9e5108 100644
--- a/chrome/install_static/product_install_details_unittest.cc
+++ b/chrome/install_static/product_install_details_unittest.cc
@@ -140,6 +140,25 @@ constexpr TestData kTestData[] = {
STABLE_INDEX, false, L"",
},
{
+ L"C:\\Program Files (x86)\\Google\\Chrome "
+ L"Beta\\Application\\chrome.exe",
+ BETA_INDEX, true, L"beta",
+ },
+ {
+ L"C:\\Users\\user\\AppData\\Local\\Google\\Chrome Beta\\Application"
+ L"\\chrome.exe",
+ BETA_INDEX, false, L"beta",
+ },
+ {
+ L"C:\\Program Files (x86)\\Google\\Chrome Dev\\Application\\chrome.exe",
+ DEV_INDEX, true, L"dev",
+ },
+ {
+ L"C:\\Users\\user\\AppData\\Local\\Google\\Chrome Dev\\Application"
+ L"\\chrome.exe",
+ DEV_INDEX, false, L"dev",
+ },
+ {
L"C:\\Users\\user\\AppData\\Local\\Google\\Chrome SxS\\Application"
L"\\chrome.exe",
CANARY_INDEX, false, L"canary",
« no previous file with comments | « chrome/install_static/install_util_unittest.cc ('k') | chrome/installer/mini_installer/appid.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698