mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Make compatible with Ruby 1.8.7
This commit is contained in:
parent
519805a9e1
commit
a327b7481b
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ Shindo.tests("AWS::DataPipeline | pipelines", ['aws', 'data_pipeline']) do
|
|||
pending if Fog.mocking?
|
||||
|
||||
unique_id = uniq_id
|
||||
model_tests(Fog::AWS[:data_pipeline].pipelines, { id: unique_id, name: "#{unique_id}-name", unique_id: unique_id }) do
|
||||
model_tests(Fog::AWS[:data_pipeline].pipelines, { :id => unique_id, :name => "#{unique_id}-name", :unique_id => unique_id }) do
|
||||
@instance.wait_for { state }
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2,7 +2,7 @@ Shindo.tests("AWS::DataPipeline | pipelines", ['aws', 'data_pipeline']) do
|
|||
pending if Fog.mocking?
|
||||
|
||||
unique_id = uniq_id
|
||||
collection_tests(Fog::AWS[:data_pipeline].pipelines, { id: unique_id, name: "#{unique_id}-name", unique_id: unique_id }) do
|
||||
collection_tests(Fog::AWS[:data_pipeline].pipelines, { :id => unique_id, :name => "#{unique_id}-name", :unique_id => unique_id }) do
|
||||
@instance.wait_for { state }
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue