aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_bn.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_bn.rb')
-rw-r--r--test/test_bn.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/test_bn.rb b/test/test_bn.rb
index 37ba5e55..57755d04 100644
--- a/test/test_bn.rb
+++ b/test/test_bn.rb
@@ -1,8 +1,6 @@
# frozen_string_literal: false
require_relative 'utils'
-if defined?(OpenSSL::TestUtils)
-
class OpenSSL::TestBN < OpenSSL::TestCase
def test_new_str
e1 = OpenSSL::BN.new(999.to_s(16), 16) # OpenSSL::BN.new(str, 16) must be most stable
@@ -57,5 +55,3 @@ class OpenSSL::TestBN < OpenSSL::TestCase
assert_not_equal(bn3.hash, bn1.hash)
end
end
-
-end