diff options
| author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-09 13:59:16 +0000 |
|---|---|---|
| committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-09 13:59:16 +0000 |
| commit | 3bd917a643ba9d421b6994dd383420ec217a7d0f (patch) | |
| tree | b26cdba1b59b3c64019dc6b38a93e9423fff4850 | |
| parent | 0e7e52d2b735e090c190f80a4dff16dcbdc33b0d (diff) | |
fixed syntax error introduced in the previous commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@26859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | test/openssl/test_ns_spki.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/openssl/test_ns_spki.rb b/test/openssl/test_ns_spki.rb index 7b3806b830..3937132aa0 100644 --- a/test/openssl/test_ns_spki.rb +++ b/test/openssl/test_ns_spki.rb @@ -22,16 +22,6 @@ class OpenSSL::TestNSSPI < Test::Unit::TestCase def teardown end -def pr(obj, ind=0) - if obj.respond_to?(:value) - puts((" "*ind) + obj.class.to_s + ":") - pr(obj.value,(ind+1)) - elsif obj.respond_to?(:each) && !(String===obj) - obj.each {|v| pr(v,ind+1) } - else - puts((" "*ind) + obj.inspect) - end -end def test_build_data key1 = OpenSSL::TestUtils::TEST_KEY_RSA1024 |
