diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-26 13:46:58 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-26 13:46:58 +0000 |
commit | 2d44dd294b419a25fc1ae58420218540f80d9356 (patch) | |
tree | 8cf7114b4f2583d312e170dca7ff619102c58e11 /test | |
parent | b6605e35501a8cb9a6dcce61792b6946f9cbf719 (diff) | |
download | redmine-2d44dd294b419a25fc1ae58420218540f80d9356.tar.gz redmine-2d44dd294b419a25fc1ae58420218540f80d9356.zip |
cleanup: rubocop: fix Layout/AlignArguments in test/unit/project_query_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18871 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/project_query_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/project_query_test.rb b/test/unit/project_query_test.rb index 3afafa2a9..1063bce7a 100644 --- a/test/unit/project_query_test.rb +++ b/test/unit/project_query_test.rb @@ -36,7 +36,7 @@ class ProjectQueryTest < ActiveSupport::TestCase q.available_filters.each do |name, filter| values = filter.values assert (values.nil? || values.is_a?(Array)), - "#values for #{name} filter returned a #{values.class.name}" + "#values for #{name} filter returned a #{values.class.name}" end end |