aboutsummaryrefslogtreecommitdiffstats
path: root/test/ossl_x509crl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ossl_x509crl.rb')
-rwxr-xr-xtest/ossl_x509crl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ossl_x509crl.rb b/test/ossl_x509crl.rb
index e885447..01e8091 100755
--- a/test/ossl_x509crl.rb
+++ b/test/ossl_x509crl.rb
@@ -8,7 +8,7 @@ include PKey
p ca = Certificate.new(File.open("./cacert.pem").read)
p key = ca.public_key
p crl = CRL.new(File.open("./01crl.pem").read)
-p crl.issuer.to_str
+p crl.issuer.to_s
p crl.verify key
p crl.verify RSA.new(1024)
crl.revoked.each {|rev| p rev.time}