Skip to content

Commit 9e4d639

Browse files
committed
Fix "Space inside parentheses" style warning
1 parent f490fab commit 9e4d639

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/classes/mysql_server_backup_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class { 'mysql::server': }
114114
default_params.merge!(custom_params)
115115
end
116116

117-
it { is_expected.to contain_file('mysqlbackup.sh').with_content( %r{touch /tmp/mysqlbackup_success}) }
117+
it { is_expected.to contain_file('mysqlbackup.sh').with_content(%r{touch /tmp/mysqlbackup_success}) }
118118
end
119119

120120
context 'with delete after dump and custom success file path' do
@@ -128,7 +128,7 @@ class { 'mysql::server': }
128128
default_params.merge!(custom_params)
129129
end
130130

131-
it { is_expected.to contain_file('mysqlbackup.sh').with_content( %r{touch /opt/mysqlbackup_success}) }
131+
it { is_expected.to contain_file('mysqlbackup.sh').with_content(%r{touch /opt/mysqlbackup_success}) }
132132
end
133133

134134
context 'custom ownership and mode for backupdir' do

0 commit comments

Comments
 (0)