Commit e81358b3 authored by Stan Hu's avatar Stan Hu

Merge branch 'fix-typo-in-sha-attribute-spec' into 'master'

Fix typo in SHA attribute spec

See merge request !12717
parents 9a708aec 33039ffd
...@@ -13,7 +13,7 @@ describe ShaAttribute do ...@@ -13,7 +13,7 @@ describe ShaAttribute do
end end
describe '#sha_attribute' do describe '#sha_attribute' do
context' when the table exists' do context 'when the table exists' do
before do before do
allow(model).to receive(:table_exists?).and_return(true) allow(model).to receive(:table_exists?).and_return(true)
end end
...@@ -30,7 +30,7 @@ describe ShaAttribute do ...@@ -30,7 +30,7 @@ describe ShaAttribute do
end end
end end
context' when the table does not exist' do context 'when the table does not exist' do
before do before do
allow(model).to receive(:table_exists?).and_return(false) allow(model).to receive(:table_exists?).and_return(false)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment