diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-05-18 15:13:30 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-05-18 15:13:30 +0000 |
commit | c26a9a733848a0696976bb98abfe623e15ba2979 (patch) | |
tree | 9d5c232db077f69930daffa85b6a739ae2b0f992 /test/cgi | |
parent | 0ea0f07f9c846116ae51bdb30c18e0c46ef3f4f9 (diff) | |
download | bundler-c26a9a733848a0696976bb98abfe623e15ba2979.tar.gz |
Fix strange indentation
which I introduced at r58773.
Hard tabs and spaces are mixed...
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/cgi')
-rw-r--r-- | test/cgi/test_cgi_util.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cgi/test_cgi_util.rb b/test/cgi/test_cgi_util.rb index 65838ec2af..f2f5575efb 100644 --- a/test/cgi/test_cgi_util.rb +++ b/test/cgi/test_cgi_util.rb @@ -30,8 +30,8 @@ class CGIUtilTest < Test::Unit::TestCase end def test_cgi_escape_with_unreserved_characters - assert_equal("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~", - CGI::escape("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~"), + assert_equal("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~", + CGI::escape("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~"), "should not escape any unreserved characters, as per RFC3986 Section 2.3") end |