mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[aws|rds] Fix server tests
(5.5 is the default mysql version)
This commit is contained in:
parent
c072f82c6e
commit
69fd1561ac
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ Shindo.tests("AWS::RDS | server", ['aws', 'rds']) do
|
|||
pending if Fog.mocking?
|
||||
|
||||
orig_parameter_group = @instance.db_parameter_groups.first['DBParameterGroupName']
|
||||
parameter_group = Fog::AWS[:rds].parameter_groups.create(:id => uniq_id, :family => 'mysql5.1', :description => 'fog-test')
|
||||
parameter_group = Fog::AWS[:rds].parameter_groups.create(:id => uniq_id, :family => 'mysql5.5', :description => 'fog-test')
|
||||
|
||||
orig_security_groups = @instance.db_security_groups.map{|h| h['DBSecurityGroupName']}
|
||||
security_group = Fog::AWS[:rds].security_groups.create(:id => uniq_id, :description => 'fog-test')
|
||||
|
|
Loading…
Reference in a new issue