]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/old_way_test.rb
Cleanup trailing whitespace
[rails.git] / test / models / old_way_test.rb
index c002ebe39f00423663805944fe65be2d27532f64..d9b2a186a422d344b582afd7157f6aec7cf07441 100644 (file)
@@ -49,7 +49,7 @@ class OldWayTest < ActiveSupport::TestCase
     way = ways(:way_with_versions_v3)
     tags = OldWay.find(way.id).old_tags.order(:k)
     assert_equal 3, tags.count
-    assert_equal "testing", tags[0].k 
+    assert_equal "testing", tags[0].k
     assert_equal "added in way version 3", tags[0].v
     assert_equal "testing three", tags[1].k
     assert_equal "added in way version 3", tags[1].v
@@ -59,7 +59,7 @@ class OldWayTest < ActiveSupport::TestCase
     way = ways(:way_with_versions_v4)
     tags = OldWay.find(way.id).old_tags.order(:k)
     assert_equal 2, tags.count
-    assert_equal "testing", tags[0].k 
+    assert_equal "testing", tags[0].k
     assert_equal "added in way version 3", tags[0].v
     assert_equal "testing two", tags[1].k
     assert_equal "modified in way version 4", tags[1].v