From: Jean-Philippe Lang Date: Wed, 16 Mar 2011 18:30:37 +0000 (+0000) Subject: Removes a space before argument parentheses. X-Git-Tag: 1.2.0~691 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a8ccddc2891e9f4ab6c762d5d3d1d5d1c7e53a40;p=redmine.git Removes a space before argument parentheses. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5152 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/test_helper.rb b/test/test_helper.rb index a6ef56b5f..230cc5869 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -416,7 +416,7 @@ class ActiveSupport::TestCase # Checks that the response is a valid JSON string def self.should_be_a_valid_json_string should "be a valid JSON string (or empty)" do - assert (response.body.blank? || ActiveSupport::JSON.decode(response.body)) + assert(response.body.blank? || ActiveSupport::JSON.decode(response.body)) end end