X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/04c697b468057d1a3604694e7ead9d2c6efd1dfa..03cad948e30d8f82d0c1c5e249cd6c92bb44dd3d:/test/models/way_test.rb diff --git a/test/models/way_test.rb b/test/models/way_test.rb index 6b166ec7e..420eb42a8 100644 --- a/test/models/way_test.rb +++ b/test/models/way_test.rb @@ -27,7 +27,7 @@ class WayTest < ActiveSupport::TestCase node_c = create(:node) way = create(:way_with_nodes, :nodes_count => 1) # Take one of the current ways and add nodes to it until we are near the limit - assert way.valid? + assert_predicate way, :valid? # it already has 1 node 1.upto(Settings.max_number_of_way_nodes / 2) do way.add_nd_num(node_a.id) @@ -35,9 +35,9 @@ class WayTest < ActiveSupport::TestCase end way.save # print way.nds.size - assert way.valid? + assert_predicate way, :valid? way.add_nd_num(node_c.id) - assert way.valid? + assert_predicate way, :valid? end def test_from_xml_no_id