X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ef7f3d800cbdd49b692df10d312e5fd880e2e938..9ec625e352fded4b12a36eb59920776e03e35846:/test/models/way_test.rb diff --git a/test/models/way_test.rb b/test/models/way_test.rb index fb0a02f57..4fa18f9b8 100644 --- a/test/models/way_test.rb +++ b/test/models/way_test.rb @@ -1,4 +1,4 @@ -require 'test_helper' +require "test_helper" class WayTest < ActiveSupport::TestCase api_fixtures @@ -15,10 +15,10 @@ class WayTest < ActiveSupport::TestCase :invisible_way, :used_way].each do |way_symbol| way = current_ways(way_symbol) - assert_equal node.bbox.min_lon, way.bbox.min_lon, 'min_lon' - assert_equal node.bbox.min_lat, way.bbox.min_lat, 'min_lat' - assert_equal node.bbox.max_lon, way.bbox.max_lon, 'max_lon' - assert_equal node.bbox.max_lat, way.bbox.max_lat, 'max_lat' + assert_equal node.bbox.min_lon, way.bbox.min_lon, "min_lon" + assert_equal node.bbox.min_lat, way.bbox.min_lat, "min_lat" + assert_equal node.bbox.max_lon, way.bbox.max_lon, "max_lon" + assert_equal node.bbox.max_lat, way.bbox.max_lat, "max_lat" end end