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

Unified Diff: Tools/GardeningServer/model/ct-commit-log-mock.html

Issue 418253002: Expose the chromium waterfall in sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: merge to ToT Created 6 years, 5 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: Tools/GardeningServer/model/ct-commit-log-mock.html
diff --git a/Tools/GardeningServer/model/ct-commit-log-mock.html b/Tools/GardeningServer/model/ct-commit-log-mock.html
index 8d48ec079bbdd0d92d959a48c74c3eebe4745b35..ef2989e3f0498625b264d549be1997f43508045f 100644
--- a/Tools/GardeningServer/model/ct-commit-log-mock.html
+++ b/Tools/GardeningServer/model/ct-commit-log-mock.html
@@ -12,9 +12,11 @@ found in the LICENSE file.
(function () {
window.CTCommitLogMock = function() {
+ var repository = 'blink';
var log = new CTCommitLog();
var commit = new CTCommitMock();
- log[commit.revision] = commit;
+ log.commits[repository] = {};
+ log.commits[repository][commit.revision] = commit;
return log;
};
« no previous file with comments | « Tools/GardeningServer/model/ct-commit-log.html ('k') | Tools/GardeningServer/model/ct-commit-log-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698