| 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;
|
| };
|
|
|
|
|