diff options
author | Sean McGivern <sean@gitlab.com> | 2017-07-07 17:34:08 +0100 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2017-07-07 17:34:08 +0100 |
commit | 1271349d7410f7f28c7ce0ef96b807f4cebbd20f (patch) | |
tree | 76a8b4a919bab5f740e9861680249525e45a1413 /spec/models | |
parent | 9c14954a81778a603a38024ce1f3f4953457d13f (diff) | |
download | gitlab-ce-1271349d7410f7f28c7ce0ef96b807f4cebbd20f.tar.gz |
Fix typo in SHA attribute spec
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/concerns/sha_attribute_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/concerns/sha_attribute_spec.rb b/spec/models/concerns/sha_attribute_spec.rb index 610793ee557..87403969fe0 100644 --- a/spec/models/concerns/sha_attribute_spec.rb +++ b/spec/models/concerns/sha_attribute_spec.rb @@ -30,7 +30,7 @@ describe ShaAttribute do end end - context' when the table does not exist' do + context 'when the table does not exist' do before do allow(model).to receive(:table_exists?).and_return(false) end |