diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2016-07-07 21:18:10 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2016-07-07 21:18:10 +0800 |
commit | 1e3ff09cf3cd78755e83288559cfb1cf0ff6539f (patch) | |
tree | 2831d76669597e83db60749c9edffa5ecb073357 /spec/models | |
parent | 20037e61122a688366060f9427506962048e77ed (diff) | |
download | gitlab-ce-1e3ff09cf3cd78755e83288559cfb1cf0ff6539f.tar.gz |
Avoid ambiguous syntax
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/build_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/build_spec.rb b/spec/models/build_spec.rb index 8e3c9672fd5..cb432a99cd2 100644 --- a/spec/models/build_spec.rb +++ b/spec/models/build_spec.rb @@ -674,7 +674,7 @@ describe Ci::Build, models: true do before { build.run! } it 'returns false' do - expect(build.retryable?).to be false + expect(build.retryable?).to be(false) end end @@ -682,7 +682,7 @@ describe Ci::Build, models: true do before { build.success! } it 'returns true' do - expect(build.retryable?).to be true + expect(build.retryable?).to be(true) end end end |