<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -52,27 +52,27 @@ class MultiGeocoderTest &lt; BaseGeocoderTest #:nodoc: all
   end
 
   def test_reverse_geocode_successful_first
-    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(@latlng).returns(@success)
+    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@success)
     assert_equal @success, Geokit::Geocoders::MultiGeocoder.reverse_geocode(@latlng)
   end
   
   def test_reverse_geocode_failover
-    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(@latlng).returns(@failure)
-    Geokit::Geocoders::YahooGeocoder.expects(:reverse_geocode).with(@latlng).returns(@success)
+    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@failure)
+    Geokit::Geocoders::YahooGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@success)
     assert_equal @success, Geokit::Geocoders::MultiGeocoder.reverse_geocode(@latlng)    
   end
   
   def test_reverse_geocode_double_failover
-    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(@latlng).returns(@failure)
-    Geokit::Geocoders::YahooGeocoder.expects(:reverse_geocode).with(@latlng).returns(@failure)
-    Geokit::Geocoders::UsGeocoder.expects(:reverse_geocode).with(@latlng).returns(@success)
+    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@failure)
+    Geokit::Geocoders::YahooGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@failure)
+    Geokit::Geocoders::UsGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@success)
     assert_equal @success, Geokit::Geocoders::MultiGeocoder.reverse_geocode(@latlng)    
   end
   
   def test_reverse_geocode_failure
-    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(@latlng).returns(@failure)
-    Geokit::Geocoders::YahooGeocoder.expects(:reverse_geocode).with(@latlng).returns(@failure)
-    Geokit::Geocoders::UsGeocoder.expects(:reverse_geocode).with(@latlng).returns(@failure)
+    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@failure)
+    Geokit::Geocoders::YahooGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@failure)
+    Geokit::Geocoders::UsGeocoder.expects(:reverse_geocode).with(@latlng, {}).returns(@failure)
     assert_equal @failure, Geokit::Geocoders::MultiGeocoder.reverse_geocode(@latlng)    
   end
 
@@ -86,7 +86,7 @@ class MultiGeocoderTest &lt; BaseGeocoderTest #:nodoc: all
   def test_reverse_geocode_with_blank_latlng
     t1 = Geokit::Geocoders.provider_order # will need to reset after
     Geokit::Geocoders.provider_order = [:google]
-    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(&quot;&quot;).returns(@failure)
+    Geokit::Geocoders::GoogleGeocoder.expects(:reverse_geocode).with(&quot;&quot;, {}).returns(@failure)
     assert_equal @failure, Geokit::Geocoders::MultiGeocoder.reverse_geocode(&quot;&quot;)
     Geokit::Geocoders.provider_order = t1 # reset to orig values
   end</diff>
      <filename>test/test_multi_geocoder.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>9a7232d7d56059558107129ab3bcf51bcb67d45b</id>
    </parent>
  </parents>
  <author>
    <name>Torsten Sch&#246;nebaum</name>
    <email>torsten.schoenebaum@planquadrat-software.de</email>
  </author>
  <url>http://github.com/tosch/geokit-gem/commit/d4e3ff1fd040acf0315ec0e6dcdcf4cad2b82703</url>
  <id>d4e3ff1fd040acf0315ec0e6dcdcf4cad2b82703</id>
  <committed-date>2009-09-30T05:43:37-07:00</committed-date>
  <authored-date>2009-09-30T05:43:37-07:00</authored-date>
  <message>update MultiGeocoderTest after inserting additional parameter in Geokit::Geocoders::reverse_geocoding</message>
  <tree>a6a51484766448348ab15797d8688de2cdcb7d51</tree>
  <committer>
    <name>Torsten Sch&#246;nebaum</name>
    <email>torsten.schoenebaum@planquadrat-software.de</email>
  </committer>
</commit>
