Skip to content

Commit 4718bba

Browse files
committed
Fixes for acceptance tests
This commit fixes some small issues where tests were failing because of a type mismatch.
1 parent 9ead014 commit 4718bba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/acceptance/01_mysql_db_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ class { 'mysql::server': override_options => { 'root_password' => 'password' } }
4343
mysql::db { 'spec2':
4444
user => 'root1',
4545
password => 'password',
46-
sql => '/tmp/spec.sql',
4746
charset => '#{fetch_charset}',
4847
collate => '#{fetch_charset}_general_ci',
48+
sql => ['/tmp/spec.sql'],
4949
}
5050
MANIFEST
5151
end

spec/acceptance/types/mysql_grant_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,8 +686,8 @@ class { 'mysql::server': override_options => { 'root_password' => 'password' } }
686686
mysql::db { 'grant_spec_db':
687687
user => 'root1',
688688
password => 'password',
689-
sql => '/tmp/grant_spec_table.sql',
690689
charset => '#{fetch_charset}',
690+
sql => ['/tmp/grant_spec_table.sql'],
691691
}
692692
MANIFEST
693693
it 'creates table' do

0 commit comments

Comments
 (0)