1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Removing trailing slashes from method calls for 1.8.7

This commit is contained in:
Jamie H 2013-09-17 10:05:11 +02:00
parent 3022a275e8
commit 37eda0617e
5 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ module Fog
request( request(
:expects => [200], :expects => [200],
:method => 'GET', :method => 'GET',
:path => "groups/#{group_id}/config", :path => "groups/#{group_id}/config"
) )
end end
end end

View file

@ -8,7 +8,7 @@ module Fog
request( request(
:expects => [200], :expects => [200],
:method => 'GET', :method => 'GET',
:path => "groups/#{group_id}/state", :path => "groups/#{group_id}/state"
) )
end end
end end

View file

@ -8,7 +8,7 @@ module Fog
request( request(
:expects => [200], :expects => [200],
:method => 'GET', :method => 'GET',
:path => "groups/#{group_id}/launch", :path => "groups/#{group_id}/launch"
) )
end end
end end

View file

@ -8,7 +8,7 @@ module Fog
request( request(
:expects => [200], :expects => [200],
:method => 'GET', :method => 'GET',
:path => "groups/#{group_id}/policies/#{policy_id}", :path => "groups/#{group_id}/policies/#{policy_id}"
) )
end end
end end

View file

@ -8,7 +8,7 @@ module Fog
request( request(
:expects => [200], :expects => [200],
:method => 'GET', :method => 'GET',
:path => "groups/#{group_id}/policies/#{policy_id}/webhooks/#{webhook_id}", :path => "groups/#{group_id}/policies/#{policy_id}/webhooks/#{webhook_id}"
) )
end end
end end