Skip to content

Commit 7f01eb3

Browse files
authored
Merge pull request #28 from voxik/minitest6
Fix compatibility with minitest 6
2 parents e52088f + a60b23d commit 7f01eb3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

test/bcrypt_pnkdf/engine_test.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
require 'minitest/autorun'
2-
require 'minitest/unit'
32
require 'test_helper'
43

54
# bcrypt_pbkdf in ruby
@@ -55,7 +54,7 @@ def bcrypt_pbkdf(password, salt, keylen, rounds)
5554
end
5655

5756

58-
class TestExt < Minitest::Unit::TestCase
57+
class TestExt < Minitest::Test
5958
def test_table
6059
assert_equal table, table.map{ |p,s,l,r| [p,s,l,r,BCryptPbkdf::Engine::__bc_crypt_pbkdf(p,s,l,r).bytes] }
6160
end

0 commit comments

Comments
 (0)