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
1 changed files with 2 additions and 2 deletions

View File

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