summaryrefslogtreecommitdiffstats
path: root/test/test_helper.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-03-16 18:30:37 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-03-16 18:30:37 +0000
commita8ccddc2891e9f4ab6c762d5d3d1d5d1c7e53a40 (patch)
tree7a1474df8f94dc87d961b3005b51ff423cb67eaa /test/test_helper.rb
parenta08c64e11fa7d38aa22f4fb4f30895fe262694bd (diff)
downloadredmine-a8ccddc2891e9f4ab6c762d5d3d1d5d1c7e53a40.tar.gz
redmine-a8ccddc2891e9f4ab6c762d5d3d1d5d1c7e53a40.zip
Removes a space before argument parentheses.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5152 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r--test/test_helper.rb2
1 files changed, 1 insertions, 1 deletions
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