Skip to content

Commit 6cb0a78

Browse files
authored
Merge pull request #21 from mtasaka/minitest-5_19-compat
Test: use recent Minitest style
2 parents 6e26b38 + 8d4c58e commit 6cb0a78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/bcrypt_pnkdf/engine_test.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require 'minitest/autorun'
2+
require 'minitest/unit'
23
require 'test_helper'
34

45
# bcrypt_pbkdf in ruby
@@ -54,7 +55,7 @@ def bcrypt_pbkdf(password, salt, keylen, rounds)
5455
end
5556

5657

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

0 commit comments

Comments
 (0)