From 41914afe0827bb5f51dba5723e71bed5a575c537 Mon Sep 17 00:00:00 2001 From: Mike Moore Date: Thu, 28 Feb 2013 18:34:02 -0700 Subject: [PATCH] Fix Mock#remove_fixed_ip arguments --- lib/fog/openstack/requests/compute/remove_fixed_ip.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/openstack/requests/compute/remove_fixed_ip.rb b/lib/fog/openstack/requests/compute/remove_fixed_ip.rb index 7af1d3ad0..2fa12e0c8 100644 --- a/lib/fog/openstack/requests/compute/remove_fixed_ip.rb +++ b/lib/fog/openstack/requests/compute/remove_fixed_ip.rb @@ -20,7 +20,7 @@ module Fog end # class Real class Mock - def remove_fixed_ip(server_id, network_id) + def remove_fixed_ip(server_id, address) true end # def remove_fixed_ip end # class Mock