summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-09-15 21:31:29 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2015-09-15 21:31:29 +0200
commitd495e4dff6aa62a2636b2a271e1c586dbdbdfee7 (patch)
tree771776331c8473b3e768b4cf0bebc544dce7d1ef /spec
parent10cf1050d08c672e0ee2c9823db31a51e7b54782 (diff)
downloadgitlab-ce-d495e4dff6aa62a2636b2a271e1c586dbdbdfee7.tar.gz
Fix: models/ci/build_spec.rb
Diffstat (limited to 'spec')
-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 dacdf38a875..ce801152042 100644
--- a/spec/models/ci/build_spec.rb
+++ b/spec/models/ci/build_spec.rb
@@ -175,7 +175,7 @@ describe Ci::Build do
before { build.trace = text }
it { is_expected.to include(text) }
- it { is_expected.to have_at_least(text.length).items }
+ it { expect(subject.length).to be >= text.length }
end
end