]> git.openstreetmap.org Git - rails.git/blobdiff - test/controllers/way_controller_test.rb
Fix tests that referred to node lat and lons
[rails.git] / test / controllers / way_controller_test.rb
index 650977078a1c31c1899e453ebd63e79bb1fcdaf1..ae52c036f43d02f4692e02607cfb30ff1614bdcc 100644 (file)
@@ -74,7 +74,7 @@ class WayControllerTest < ActionController::TestCase
       way.nodes.each do |n|
         count = (way.nodes - (way.nodes - [n])).length
         assert_select "osm way nd[ref='#{n.id}']", count
-        assert_select "osm node[id='#{n.id}'][version='#{n.version}'][lat='#{n.lat}'][lon='#{n.lon}']", 1
+        assert_select "osm node[id='#{n.id}'][version='#{n.version}'][lat='#{format('%.7f', n.lat)}'][lon='#{format('%.7f', n.lon)}']", 1
       end
     end
   end