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:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-06-07 11:25:57 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-06-07 11:25:57 +0300
commitdbf235f514cc919a10fee1d9ab8dc1c75bc25238 (patch)
tree5f2fee6a68c3164fdf4cf101d5f5dbbbc6cfac37 /spec/lib/gitlab/badge
parent4e38d88df50d85d076110c8b78aaac78772d9554 (diff)
Fix tests failures
Diffstat (limited to 'spec/lib/gitlab/badge')
-rw-r--r--spec/lib/gitlab/badge/build_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/badge/build_spec.rb b/spec/lib/gitlab/badge/build_spec.rb
index aec5a5bc3b2..2034445a197 100644
--- a/spec/lib/gitlab/badge/build_spec.rb
+++ b/spec/lib/gitlab/badge/build_spec.rb
@@ -110,8 +110,8 @@ describe Gitlab::Badge::Build do
def create_build(project, sha, branch)
pipeline = create(:ci_pipeline, project: project,
- sha: sha,
- ref: branch)
+ sha: sha,
+ ref: branch)
create(:ci_build, pipeline: pipeline)
end