From 96e98e24f0b3186f0c757bc06a1ff9e2c08fe00d Mon Sep 17 00:00:00 2001 From: ZhongShengping Date: Mon, 2 May 2016 10:00:45 +0800 Subject: [PATCH] Modify format In cinder_db_sync_spec.rb file, the format has a problem, fix this. Change-Id: I49436f2ab5f9dbfab5e4db0524f88f0ac255c5e4 --- spec/classes/cinder_db_sync_spec.rb | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/spec/classes/cinder_db_sync_spec.rb b/spec/classes/cinder_db_sync_spec.rb index 6823a4ca..2e2cc0e2 100644 --- a/spec/classes/cinder_db_sync_spec.rb +++ b/spec/classes/cinder_db_sync_spec.rb @@ -14,21 +14,21 @@ describe 'cinder::db::sync' do ) end - describe "overriding extra_params" do - let :params do - { - :extra_params => '--config-file /etc/cinder/cinder.conf', - } - end + describe "overriding extra_params" do + let :params do + { + :extra_params => '--config-file /etc/cinder/cinder.conf', + } + end - it { - is_expected.to contain_exec('cinder-manage db_sync').with( - :command => 'cinder-manage --config-file /etc/cinder/cinder.conf db sync', - :user => 'cinder', - :path => '/usr/bin', - :refreshonly => 'true', - :logoutput => 'on_failure' - ) + it { + is_expected.to contain_exec('cinder-manage db_sync').with( + :command => 'cinder-manage --config-file /etc/cinder/cinder.conf db sync', + :user => 'cinder', + :path => '/usr/bin', + :refreshonly => 'true', + :logoutput => 'on_failure' + ) } end