DEV: Update minitest to 5.19.0 (#22821)

This commit is contained in:
Jarek Radosz 2023-07-27 12:18:40 +02:00 committed by GitHub
parent 1377186d38
commit 3a11c82547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -242,7 +242,7 @@ GEM
mini_sql (1.4.0) mini_sql (1.4.0)
mini_suffix (0.3.3) mini_suffix (0.3.3)
ffi (~> 1.9) ffi (~> 1.9)
minitest (5.18.1) minitest (5.19.0)
mocha (2.0.4) mocha (2.0.4)
ruby2_keywords (>= 0.0.5) ruby2_keywords (>= 0.0.5)
msgpack (1.7.2) msgpack (1.7.2)

View File

@ -475,7 +475,7 @@ def confirm_overwrite(path)
STDIN.gets.chomp STDIN.gets.chomp
end end
class TestEmojiUpdate < MiniTest::Test class TestEmojiUpdate < Minitest::Test
def self.run_and_summarize def self.run_and_summarize
puts "Runnings tests..." puts "Runnings tests..."
reporter = Minitest::SummaryReporter.new reporter = Minitest::SummaryReporter.new

View File

@ -5,7 +5,7 @@ RSpec::Matchers.define :be_same_dom do |expected|
match do |actual| match do |actual|
begin begin
assert_dom_equal(expected, actual) assert_dom_equal(expected, actual)
rescue MiniTest::Assertion rescue Minitest::Assertion
false false
end end
end end