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

Unified Diff: dashboard/dashboard/static/series_group_test.html

Issue 2716683004: [Dashboard] Start using /list_tests's test_path_dict mode in test-picker (Closed)
Patch Set: fix v8 case Created 3 years, 9 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 | « dashboard/dashboard/static/series_group.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/static/series_group_test.html
diff --git a/dashboard/dashboard/static/series_group_test.html b/dashboard/dashboard/static/series_group_test.html
index eb28d5b39625927ac8417017d2e0315bce0fa293..c93aeb38520db1b2e1005d6bbc8e64024cfd4f47 100644
--- a/dashboard/dashboard/static/series_group_test.html
+++ b/dashboard/dashboard/static/series_group_test.html
@@ -25,13 +25,13 @@ tr.b.unittest.testSuite(() => {
test('requestParamsSelected', () => {
const element = ['foo', []];
const params = d.listTestsRequestParams(element, true);
- assert.strictEqual(params.selected, '1');
+ assert.strictEqual(params.return_selected, '1');
});
test('requestParamsUnselected', () => {
const element = ['foo', []];
const params = d.listTestsRequestParams(element, false);
- assert.strictEqual(params.selected, '0');
+ assert.strictEqual(params.return_selected, '0');
});
test('requestParamsAll', () => {
« no previous file with comments | « dashboard/dashboard/static/series_group.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698