mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Fix Joyent service declarations
When the Joyent provider was merged in it was after a reworking of how requires and services were declared. This meant the call to `service` was no longer correct. This updates the signature and the mocked tests now pass (locally at least) however the structuring and placement of the files may not be inconsistent with the results of [GH-1712]
This commit is contained in:
parent
2820975cbf
commit
527b91bf02
1 changed files with 2 additions and 2 deletions
|
@ -6,8 +6,8 @@ module Fog
|
|||
module Joyent
|
||||
extend Fog::Provider
|
||||
|
||||
service(:analytics, 'joyent/analytics', 'Analytics')
|
||||
service(:compute, 'joyent/compute', 'Compute')
|
||||
service(:analytics, 'Analytics')
|
||||
service(:compute, 'Compute')
|
||||
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue