X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b095b59d5e0ee805e49980af80b21bd1acff1345..72e71b99724a19d124ddddb15ec2c072227f869d:/test/models/old_relation_test.rb diff --git a/test/models/old_relation_test.rb b/test/models/old_relation_test.rb index 14fe8a72c..c11cdcf72 100644 --- a/test/models/old_relation_test.rb +++ b/test/models/old_relation_test.rb @@ -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