diff options
author | Stefan Hanreich <stefanhani@gmail.com> | 2017-05-11 20:54:41 +0200 |
---|---|---|
committer | Stefan Hanreich <stefanhani@gmail.com> | 2017-06-18 23:57:22 +0200 |
commit | fde8f9d736b058e1688c87ed4d3ac835d1603937 (patch) | |
tree | 30d0a71d8433a67b4f930469d26b9e2a61e511bd /spec/models | |
parent | 6394d560ada1bc8b70bcd338343fe978916f84a4 (diff) | |
download | gitlab-ce-fde8f9d736b058e1688c87ed4d3ac835d1603937.tar.gz |
fix typo
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/ci/build_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/ci/build_spec.rb b/spec/models/ci/build_spec.rb index 855e55dd489..4bf1f296803 100644 --- a/spec/models/ci/build_spec.rb +++ b/spec/models/ci/build_spec.rb @@ -1047,7 +1047,7 @@ describe Ci::Build, :models do it "transforms #{ref} to #{slug}" do build.ref = ref - expected(build.ref_slug).to eq(slug) + expect(build.ref_slug).to eq(slug) end end end |