aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/test_entity.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-02 02:18:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-02 02:18:44 +0000
commitae042f21fb695fc80eb19273fa542e8dad85f19f (patch)
tree6b64fce04b19a8e1531f60a7d3d47c8a9fc97a20 /test/rexml/test_entity.rb
parent21f2c194bbf781d9228584f3e93f4a93b33f5632 (diff)
downloadruby-ae042f21fb695fc80eb19273fa542e8dad85f19f.tar.gz
use assert_raise
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rexml/test_entity.rb')
-rw-r--r--test/rexml/test_entity.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rexml/test_entity.rb b/test/rexml/test_entity.rb
index 7d16dc83fe..bef1bd6c01 100644
--- a/test/rexml/test_entity.rb
+++ b/test/rexml/test_entity.rb
@@ -118,7 +118,7 @@ module REXMLTests
# above 10k explodes
entities = '&a;' * 3 # 5k entity * 2 = 15k
xmldoc = REXML::Document.new(template.sub(/\$/, entities))
- assert_raises(RuntimeError) do
+ assert_raise(RuntimeError) do
xmldoc.root.text
end
end
@@ -134,7 +134,7 @@ module REXMLTests
# above 10k explodes
entities = '%a;' * 3 # 5k entity * 2 = 15k
- assert_raises(REXML::ParseException) do
+ assert_raise(REXML::ParseException) do
REXML::Document.new(template.sub(/\$/, entities))
end
end