diff options
author | Douwe Maan <douwe@selenight.nl> | 2017-04-26 15:48:49 -0500 |
---|---|---|
committer | Douwe Maan <douwe@selenight.nl> | 2017-04-27 12:23:27 -0500 |
commit | 87a3bd26fa1c6379801062fd65fea59e587baeee (patch) | |
tree | 0376d4fcf33aa230bff1f686710fc97e20363450 /spec/models/blob_spec.rb | |
parent | c6b2a22f63bc7561beb3e596b14c62021d64c6e7 (diff) | |
download | gitlab-ce-87a3bd26fa1c6379801062fd65fea59e587baeee.tar.gz |
Address feedback
Diffstat (limited to 'spec/models/blob_spec.rb')
-rw-r--r-- | spec/models/blob_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/blob_spec.rb b/spec/models/blob_spec.rb index 80dcfeeb3b5..7e8a1c8add7 100644 --- a/spec/models/blob_spec.rb +++ b/spec/models/blob_spec.rb @@ -39,7 +39,7 @@ describe Blob do context 'if the blob is a valid LFS pointer' do context 'if the extension has a rich viewer' do context 'if the viewer is binary' do - it 'return true' do + it 'returns true' do blob = fake_blob(path: 'file.pdf', lfs: true) expect(blob.raw_binary?).to be_truthy @@ -66,7 +66,7 @@ describe Blob do context 'if the blob is not an LFS pointer' do context 'if the blob is binary' do - it 'return true' do + it 'returns true' do blob = fake_blob(path: 'file.pdf', binary: true) expect(blob.raw_binary?).to be_truthy |