diff options
author | Stefan Hanreich <stefanhani@gmail.com> | 2017-05-11 20:54:41 +0200 |
---|---|---|
committer | Stefan Hanreich <stefanhani@gmail.com> | 2017-05-11 20:54:41 +0200 |
commit | d4e372d5c4f9c72b36481febdd5bec55edc9ee77 (patch) | |
tree | 4fa8c975ad05495fc35f3a7779b159db6e0537d1 | |
parent | 3101992320687b05a7e951c0c3befeb1d4093b45 (diff) | |
download | gitlab-ce-d4e372d5c4f9c72b36481febdd5bec55edc9ee77.tar.gz |
fix typo
-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 c29c62a2580..02a2877e6fd 100644 --- a/spec/models/ci/build_spec.rb +++ b/spec/models/ci/build_spec.rb @@ -979,7 +979,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 |