Skip to content

Commit

Permalink
code cleanup: rubocop: fix Layout/AlignArguments in test/unit/time_en…
Browse files Browse the repository at this point in the history
…try_query_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18853 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
marutosi committed Oct 23, 2019
1 parent 136130d commit c016005
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/time_entry_query_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_filter_values_without_project_should_be_arrays
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

Expand All @@ -52,7 +52,7 @@ def test_filter_values_with_project_should_be_arrays
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

Expand Down

0 comments on commit c016005

Please sign in to comment.