Skip to content

Commit

Permalink
Update minitest version
Browse files Browse the repository at this point in the history
A recent release of minitest removed the dependency on `mutex_m`. `mutex_m` is no longer part of the standard library with Ruby 3.4.
  • Loading branch information
andyundso committed Dec 25, 2024
1 parent 5f822f0 commit f7b86b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/gem_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'test_helper'
require 'tiny_tds/gem'

class GemTest < MiniTest::Spec
class GemTest < Minitest::Spec
gem_root ||= File.expand_path '../..', __FILE__

describe TinyTds::Gem do
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
TINYTDS_SCHEMAS = ['sqlserver_2017', 'sqlserver_azure'].freeze

module TinyTds
class TestCase < MiniTest::Spec
class TestCase < Minitest::Spec

class << self

Expand Down
2 changes: 1 addition & 1 deletion tiny_tds.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake', '~> 13.0.0'
s.add_development_dependency 'rake-compiler', '~> 1.2'
s.add_development_dependency 'rake-compiler-dock', '~> 1.7.0'
s.add_development_dependency 'minitest', '~> 5.14.0'
s.add_development_dependency 'minitest', '~> 5'
s.add_development_dependency 'minitest-reporters', '~> 1.6.1'
s.add_development_dependency 'connection_pool', '~> 2.2.0'
s.add_development_dependency 'toxiproxy', '~> 2.0.0'
Expand Down

0 comments on commit f7b86b0

Please sign in to comment.