summaryrefslogtreecommitdiff
path: root/test/json
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-02-05 02:29:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-02-05 02:29:18 +0000
commit1069e5d665599ce60086f284b575d3a850ed2b01 (patch)
tree0ad0acf49f2147bd8405dbc75d592429efadee87 /test/json
parent9cc62abc6b0245e5f0e4a8f0cd9b6f53a4f9bf77 (diff)
* ext/json/parser/parser.h (GET_PARSER): raise TypeError.
* ext/json/parser/parser.rl (cParser_initialize): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30792 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/json')
-rwxr-xr-xtest/json/test_json.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/json/test_json.rb b/test/json/test_json.rb
index cb70085242..aea50485fc 100755
--- a/test/json/test_json.rb
+++ b/test/json/test_json.rb
@@ -394,8 +394,8 @@ EOT
def test_allocate
json = JSON::Parser.new("{}")
- assert_raises(ArgumentError, '[ruby-core:35079]') {json.__send__(:initialize, "{}")}
+ assert_raises(TypeError, '[ruby-core:35079]') {json.__send__(:initialize, "{}")}
json = JSON::Parser.allocate
- assert_raises(ArgumentError, '[ruby-core:35079]') {json.source}
+ assert_raises(TypeError, '[ruby-core:35079]') {json.source}
end
end