summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hanreich <stefanhani@gmail.com>2017-05-11 20:54:41 +0200
committerStefan Hanreich <stefanhani@gmail.com>2017-05-11 20:54:41 +0200
commitd4e372d5c4f9c72b36481febdd5bec55edc9ee77 (patch)
tree4fa8c975ad05495fc35f3a7779b159db6e0537d1
parent3101992320687b05a7e951c0c3befeb1d4093b45 (diff)
downloadgitlab-ce-d4e372d5c4f9c72b36481febdd5bec55edc9ee77.tar.gz
fix typo
-rw-r--r--spec/models/ci/build_spec.rb2
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