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

Fix typo in SHA attribute spec

See merge request !12717
This commit is contained in:
Stan Hu 2017-07-07 19:09:05 +00:00
commit e81358b3b7

View file

@ -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
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