From b22dad45a8572e505a8b824831fa3d9c4321429f Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Mon, 26 Oct 2020 13:35:42 +0000 Subject: [PATCH] fix source indent of test/unit/query_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@20200 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/query_test.rb | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/test/unit/query_test.rb b/test/unit/query_test.rb index 4b8dce23a..7c72cf268 100644 --- a/test/unit/query_test.rb +++ b/test/unit/query_test.rb @@ -2213,15 +2213,21 @@ class QueryTest < ActiveSupport::TestCase end def test_build_from_params_should_not_update_query_with_nil_param_values - q = IssueQuery.create!(:name => 'Query', - :type => "IssueQuery", - :user => User.find(7), - :filters => {"status_id" => {:values => ["1"], :operator => "o"}}, - :column_names => [:tracker, :status], - :sort_criteria => ['id', 'asc'], - :group_by => "project", - :options => { :totalable_names=>[:estimated_hours], :draw_relations => '1', :draw_progress_line => '1' } - ) + q = + IssueQuery.create!( + :name => 'Query', + :type => "IssueQuery", + :user => User.find(7), + :filters => {"status_id" => {:values => ["1"], :operator => "o"}}, + :column_names => [:tracker, :status], + :sort_criteria => ['id', 'asc'], + :group_by => "project", + :options => { + :totalable_names=>[:estimated_hours], + :draw_relations => '1', + :draw_progress_line => '1' + } + ) old_attributes = q.attributes q.build_from_params({}) assert_equal old_attributes, q.attributes