X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b095b59d5e0ee805e49980af80b21bd1acff1345..2f722fc281434ef59e19c504bff9e748e9d3f4b4:/test/lib/country_test.rb diff --git a/test/lib/country_test.rb b/test/lib/country_test.rb index 14827c05f..0e21a9ed8 100644 --- a/test/lib/country_test.rb +++ b/test/lib/country_test.rb @@ -1,8 +1,8 @@ -require 'test_helper' +require "test_helper" class CountryTest < ActiveSupport::TestCase def test_gb - gb = Country.find_by_code("GB") + gb = Country.find("GB") assert_not_nil gb assert_equal "GB", gb.code assert_equal -8.623555, gb.min_lon @@ -12,7 +12,7 @@ class CountryTest < ActiveSupport::TestCase end def test_au - au = Country.find_by_code("AU") + au = Country.find("AU") assert_not_nil au assert_equal "AU", au.code assert_equal 112.911057, au.min_lon @@ -22,7 +22,7 @@ class CountryTest < ActiveSupport::TestCase end def test_xx - xx = Country.find_by_code("XX") + xx = Country.find("XX") assert_nil xx end end