Fix a few typos in unit test (#1437)

This commit is contained in:
Ruben Kerkhof
2022-01-17 15:45:24 +01:00
committed by GitHub
parent 8eeceb3646
commit b3cf54a946

View File

@@ -190,12 +190,12 @@ describe 'templates/domain' do
end
end
context 'memballon enabled' do
context 'memballoon enabled' do
before do
domain.memballoon_enabled = true
end
it 'renders with memballon element' do
it 'renders with memballoon element' do
domain.finalize!
expect(domain.to_xml('domain')).to match(/<memballoon model='virtio'>/)
@@ -218,7 +218,7 @@ describe 'templates/domain' do
end
end
context 'memballon disabled' do
context 'memballoon disabled' do
before do
domain.memballoon_enabled = false
end