diff options
author | Achilleas Pipinellis <axil@gitlab.com> | 2018-11-01 10:34:23 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2018-11-01 10:34:23 +0000 |
commit | 7f47e13218477c13cc627c2f0664500b72ea18b7 (patch) | |
tree | 077f08ada085795dab3a4ecbcfa0436d67642977 /spec/models/lfs_object_spec.rb | |
parent | 1c50200b9aba86d2ba66b81dee7886a51dc38409 (diff) | |
parent | 733ae9492129e835f183902a97ee0886e2dbdc9b (diff) | |
download | gitlab-ce-7f47e13218477c13cc627c2f0664500b72ea18b7.tar.gz |
Merge branch 'gt-update-typos-in-comments-and-specs' into 'master'
Fix typos in comments and specs
See merge request gitlab-org/gitlab-ce!22683
Diffstat (limited to 'spec/models/lfs_object_spec.rb')
-rw-r--r-- | spec/models/lfs_object_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/lfs_object_spec.rb b/spec/models/lfs_object_spec.rb index 911f85d7b28..3f929710862 100644 --- a/spec/models/lfs_object_spec.rb +++ b/spec/models/lfs_object_spec.rb @@ -8,7 +8,7 @@ describe LfsObject do expect(subject.local_store?).to eq true end - it 'returns false whe file_store is equal to LfsObjectUploader::Store::REMOTE' do + it 'returns false when file_store is equal to LfsObjectUploader::Store::REMOTE' do subject.file_store = LfsObjectUploader::Store::REMOTE expect(subject.local_store?).to eq false |