]> git.openstreetmap.org Git - rails.git/commitdiff
Update short link test results
authorTom Hughes <tom@compton.nu>
Tue, 6 Aug 2013 12:33:21 +0000 (13:33 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 6 Aug 2013 12:33:21 +0000 (13:33 +0100)
test/functional/site_controller_test.rb
test/integration/short_links_test.rb

index 23e6c27a375383bd57069b0d155e4aea5729b671..770f3e2b5171a7e4af59d4a9b3f156bdaa25ad32 100644 (file)
@@ -92,7 +92,7 @@ class SiteControllerTest < ActionController::TestCase
 
   def test_permalink
     get :permalink, :code => 'wBz3--'
-    assert_redirected_to :controller => :site, :action => 'index', :anchor => '3/4.8779296875/3.955078125'
+    assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=3/4.8779296875/3.955078125'
   end
 
   # Get the edit page
index 6b85554e229fc74f5a03ec2ce5c4a808b880e07c..d4f6f8abcc41ddd50944ba6c4c4c671649a0c90f 100644 (file)
@@ -13,7 +13,7 @@ class ShortLinksTest < ActionController::IntegrationTest
   # utility method to test short links
   def assert_short_link_redirect(short_link)
     lon, lat, zoom = ShortLink::decode(short_link)
-    anchor = "#{zoom}/#{lat}/#{lon}"
+    anchor = "map=#{zoom}/#{lat}/#{lon}"
 
     # test without marker
     get '/go/' + short_link