1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00

cleanup: rubocop: fix Style/RedundantInterpolation in test/unit/repository_mercurial_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18959 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-08 12:34:44 +00:00
parent 72cb102740
commit 2870220c8d
2 changed files with 3 additions and 4 deletions

View File

@ -1419,7 +1419,6 @@ Style/RedundantInterpolation:
- 'lib/redmine/wiki_formatting.rb'
- 'test/functional/versions_controller_test.rb'
- 'test/functional/watchers_controller_test.rb'
- 'test/unit/repository_mercurial_test.rb'
# Cop supports --auto-correct.
Style/RedundantParentheses:

View File

@ -174,7 +174,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
assert_equal "0885933ad4f68d77c2649cd11f8311276e7ef7ce", rev0.scmid
first_rev = @repository.changesets.first
last_rev = @repository.changesets.last
assert_equal "#{NUM_REV - 1}", first_rev.revision
assert_equal (NUM_REV - 1).to_s, first_rev.revision
assert_equal "0", last_rev.revision
end
@ -253,7 +253,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
# with_limit
changesets = @repository.latest_changesets('', nil, 2)
assert_equal ["#{NUM_REV - 1}", "#{NUM_REV - 2}"], changesets.collect(&:revision)
assert_equal [(NUM_REV - 1).to_s, (NUM_REV - 2).to_s], changesets.collect(&:revision)
# with_filepath
changesets = @repository.latest_changesets(
@ -590,7 +590,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
@repository.fetch_changesets
@project.reload
assert_equal NUM_REV, @repository.changesets.count
["#{NUM_REV - 1}", "2e6d54642923", "2e6d5"].each do |r1|
[(NUM_REV - 1).to_s, "2e6d54642923", "2e6d5"].each do |r1|
changeset = @repository.find_changeset_by_name(r1)
assert_nil changeset.next
end