aboutsummaryrefslogtreecommitdiffstats
path: root/test/rss
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-13 05:41:44 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-13 05:41:44 +0000
commit1474dd064b28e4a813a79342c5523cede60f83c7 (patch)
tree18eed509f9c6e01f993948b733c165f6006a2450 /test/rss
parent90026ab53f89304438d907c0c7cc23afccc6edb7 (diff)
downloadruby-1474dd064b28e4a813a79342c5523cede60f83c7.tar.gz
* test/-ext-/test_printf.rb, test/rss/test_parser.rb,
test/ruby/test_array.rb, test/ruby/test_hash.rb, test/ruby/test_m17n.rb, test/ruby/test_marshal.rb, test/ruby/test_object.rb, test/ruby/test_string.rb: don't use untrusted?, untrust, and trust to avoid warnings in case $VERBOSE is true. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41271 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rss')
-rw-r--r--test/rss/test_parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rss/test_parser.rb b/test/rss/test_parser.rb
index 833146b980..8d8d1e1970 100644
--- a/test/rss/test_parser.rb
+++ b/test/rss/test_parser.rb
@@ -18,7 +18,7 @@ EOR
@rss_tmp = Tempfile.new(%w"rss10- .rdf")
@rss_tmp.print(@rss10)
@rss_tmp.close
- @rss_file = @rss_tmp.path.untaint.trust
+ @rss_file = @rss_tmp.path.untaint
end
def teardown