From 69fd1561ac74482a726af77af7a3d7aa509faa83 Mon Sep 17 00:00:00 2001 From: Aaron Suggs Date: Fri, 3 Aug 2012 18:13:01 -0400 Subject: [PATCH] [aws|rds] Fix server tests (5.5 is the default mysql version) --- tests/aws/models/rds/server_tests.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/aws/models/rds/server_tests.rb b/tests/aws/models/rds/server_tests.rb index b61dfb7d8..afa8192cf 100644 --- a/tests/aws/models/rds/server_tests.rb +++ b/tests/aws/models/rds/server_tests.rb @@ -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')