Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-06 10:52:56 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-06 10:52:56 +0400
commit8f1e60b05719bf8c5c7474ad228f925a0cab6b07 (patch)
tree8ef8467de3da53a99da2734c75105817cf07d392 /spec/support
parentb954f24420114a6acee9caf038e6dae6650bd066 (diff)
Fix satellite tests
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/repo_helpers.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/spec/support/repo_helpers.rb b/spec/support/repo_helpers.rb
index f19c8ebf844..4c4775da692 100644
--- a/spec/support/repo_helpers.rb
+++ b/spec/support/repo_helpers.rb
@@ -81,10 +81,19 @@ eos
}
]
+ commits = [
+ '5937ac0a7beb003549fc5fd26fc247adbce4a52e',
+ '570e7b2abdd848b95f2f578043fc23bd6f6fd24d',
+ '6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9',
+ 'd14d6c0abdd253381df51a723d58691b2ee1ab08',
+ 'c1acaa58bbcbc3eafe538cb8274ba387047b69f8',
+ ].reverse # last commit is recent one
+
OpenStruct.new(
source_branch: 'master',
target_branch: 'feature',
- changes: changes
+ changes: changes,
+ commits: commits
)
end
end