Skip to content

Commit 0c855eb

Browse files
committed
do not use assert_nothing_raised
1 parent 605cd71 commit 0c855eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/ruby/oaep/test_oaep.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def test_oaep_decrypt
1515
key = OpenSSL::PKey::RSA.new(key)
1616

1717
cipher_text = Base64.decode64(base64_cipher_text)
18-
assert_nothing_raised {
19-
decrypted = key.private_decrypt(cipher_text, OpenSSL::PKey::RSA::PKCS1_OAEP_PADDING)
20-
}
18+
# assert_nothing_raised {
19+
key.private_decrypt(cipher_text, OpenSSL::PKey::RSA::PKCS1_OAEP_PADDING)
20+
# }
2121
end
2222
end

0 commit comments

Comments
 (0)