summaryrefslogtreecommitdiff
path: root/spec/models/concerns
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-07-07 19:09:05 +0000
committerStan Hu <stanhu@gmail.com>2017-07-07 19:09:05 +0000
commite81358b3b7990707a2369646bf855cca6a8a9d5a (patch)
tree0e8d8049a3e837346b14b6791fdae3a8e141310c /spec/models/concerns
parent9a708aec4b3ba8d7a410c4b06534d0d128470bf8 (diff)
parent33039ffdb5b6b9c9f9b0ca53b2084ab37cba60ec (diff)
downloadgitlab-ce-e81358b3b7990707a2369646bf855cca6a8a9d5a.tar.gz
Merge branch 'fix-typo-in-sha-attribute-spec' into 'master'
Fix typo in SHA attribute spec See merge request !12717
Diffstat (limited to 'spec/models/concerns')
-rw-r--r--spec/models/concerns/sha_attribute_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/concerns/sha_attribute_spec.rb b/spec/models/concerns/sha_attribute_spec.rb
index 610793ee557..21893e0cbaa 100644
--- a/spec/models/concerns/sha_attribute_spec.rb
+++ b/spec/models/concerns/sha_attribute_spec.rb
@@ -13,7 +13,7 @@ describe ShaAttribute do
end
describe '#sha_attribute' do
- context' when the table exists' do
+ context 'when the table exists' do
before do
allow(model).to receive(:table_exists?).and_return(true)
end
@@ -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