diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-09-14 19:03:31 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-09-14 19:03:31 +0000 |
commit | 7a488904fafd9630cf110349f747653bf50f9bf1 (patch) | |
tree | 6d3a5c7500e504869bbbde1d4c2f5eaf8ad2c488 | |
parent | 2e375622063bef5dab6194be0d0cba093adcb235 (diff) | |
download | redmine-7a488904fafd9630cf110349f747653bf50f9bf1.tar.gz redmine-7a488904fafd9630cf110349f747653bf50f9bf1.zip |
code cleanup: rubocop: fix Layout/IndentationConsistency in test/functional/repositories_mercurial_controller_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18470 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | .rubocop_todo.yml | 1 | ||||
-rw-r--r-- | test/functional/repositories_mercurial_controller_test.rb | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 2fb21229b..697c54bc5 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -299,7 +299,6 @@ Layout/IndentationConsistency: - 'app/models/attachment.rb' - 'test/functional/issues_controller_test.rb' - 'test/functional/project_enumerations_controller_test.rb' - - 'test/functional/repositories_mercurial_controller_test.rb' - 'test/helpers/application_helper_test.rb' - 'test/integration/api_test/custom_fields_attribute_test.rb' - 'test/integration/api_test/issues_test.rb' diff --git a/test/functional/repositories_mercurial_controller_test.rb b/test/functional/repositories_mercurial_controller_test.rb index 0568fdb32..ae399f288 100644 --- a/test/functional/repositories_mercurial_controller_test.rb +++ b/test/functional/repositories_mercurial_controller_test.rb @@ -212,7 +212,7 @@ class RepositoriesMercurialControllerTest < Redmine::RepositoryControllerTest @repository.fetch_changesets @project.reload assert_equal NUM_REV, @repository.changesets.count - [ + [ 'default', 'branch-Ü-01', 'branch (1)[2]&,%.-3_4', @@ -237,7 +237,7 @@ class RepositoriesMercurialControllerTest < Redmine::RepositoryControllerTest @repository.fetch_changesets @project.reload assert_equal NUM_REV, @repository.changesets.count - [ + [ 'tag-Ü-00', 'tag_test.00', 'tag-init-revision' |