]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/old_relation_test.rb
Fix rubocop warnings
[rails.git] / test / models / old_relation_test.rb
index 14fe8a72cc8a9d0660f259f1c9f787cb3140744d..c11cdcf72889105538d2410bf953a135afb0e49c 100644 (file)
@@ -1,4 +1,4 @@
-require 'test_helper'
+require "test_helper"
 
 class OldRelationTest < ActiveSupport::TestCase
   api_fixtures
@@ -19,7 +19,7 @@ class OldRelationTest < ActiveSupport::TestCase
     relation = relations(:relation_with_versions_v3)
     tags = OldRelation.find(relation.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 relation version 3", tags[0].v
     assert_equal "testing three", tags[1].k
     assert_equal "added in relation version 3", tags[1].v
@@ -29,7 +29,7 @@ class OldRelationTest < ActiveSupport::TestCase
     relation = relations(:relation_with_versions_v4)
     tags = OldRelation.find(relation.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 relation version 3", tags[0].v
     assert_equal "testing two", tags[1].k
     assert_equal "modified in relation version 4", tags[1].v