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
|
||||
|
||||
def update_server(server_id, group_name)
|
||||
def add_security_group(server_id, group_name)
|
||||
response = Excon::Response.new
|
||||
response.status = 200
|
||||
response
|
||||
|
|
|
@ -12,7 +12,7 @@ module Fog
|
|||
|
||||
class Mock
|
||||
|
||||
def update_server(server_id, group_name)
|
||||
def remove_security_group(server_id, group_name)
|
||||
response = Excon::Response.new
|
||||
response.status = 200
|
||||
response
|
||||
|
|
Loading…
Reference in a new issue