mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Fixed method names for Mock objects for add/remove_security_group
This commit is contained in:
parent
7cff96bfd3
commit
819e2cdfc2
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ module Fog
|
||||||
|
|
||||||
class Mock
|
class Mock
|
||||||
|
|
||||||
def update_server(server_id, group_name)
|
def add_security_group(server_id, group_name)
|
||||||
response = Excon::Response.new
|
response = Excon::Response.new
|
||||||
response.status = 200
|
response.status = 200
|
||||||
response
|
response
|
||||||
|
|
|
@ -12,7 +12,7 @@ module Fog
|
||||||
|
|
||||||
class Mock
|
class Mock
|
||||||
|
|
||||||
def update_server(server_id, group_name)
|
def remove_security_group(server_id, group_name)
|
||||||
response = Excon::Response.new
|
response = Excon::Response.new
|
||||||
response.status = 200
|
response.status = 200
|
||||||
response
|
response
|
||||||
|
|
Loading…
Reference in a new issue