Skip to content

Commit

Permalink
replace mysql_password with mysql::password in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
saz committed Nov 1, 2024
1 parent a5839eb commit dd764bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/acceptance/class_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,21 +113,21 @@ class { 'proxysql':
proxy_mysql_user { 'tester':
ensure => 'absent',
password => mysql_password('tester'),
password => mysql::password('tester'),
default_hostgroup => 1,
default_schema => 'test',
}
proxy_mysql_user { 'tester1':
ensure => 'present',
password => mysql_password('tester123'),
password => mysql::password('tester123'),
default_hostgroup => 1,
default_schema => 'test1',
}
proxy_mysql_user { 'tester2':
ensure => 'present',
password => mysql_password('tester2'),
password => mysql::password('tester2'),
default_hostgroup => 2,
default_schema => 'test2',
load_to_runtime => false,
Expand Down

0 comments on commit dd764bb

Please sign in to comment.