Skip to content

Commit

Permalink
Merge pull request #493 from sparklemotion/dependabot/bundler/rubocop…
Browse files Browse the repository at this point in the history
…-minitest-0.34.5

build(deps-dev): update rubocop-minitest requirement from 0.34.3 to 0.34.5
  • Loading branch information
flavorjones authored Jan 30, 2024
2 parents ac14ce3 + a3bd673 commit a8390e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ group :development do
gem "rdoc", "6.6.2"

gem "rubocop", "1.59.0", require: false
gem "rubocop-minitest", "0.34.3", require: false
gem "rubocop-minitest", "0.34.5", require: false
gem "standard", "1.33.0", require: false
end
8 changes: 4 additions & 4 deletions test/test_integration_resultset.rb
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ def test_real_translation
@db.execute("insert into foo_real values (42)")
@db.query("select a, sum(a), typeof(a), typeof(sum(a)) from foo_real") do |result|
result = result.next
assert result[0].is_a?(Float)
assert result[1].is_a?(Float)
assert result[2].is_a?(String)
assert result[3].is_a?(String)
assert_kind_of Float, result[0]
assert_kind_of Float, result[1]
assert_kind_of String, result[2]
assert_kind_of String, result[3]
end
end

Expand Down
2 changes: 1 addition & 1 deletion test/test_statement.rb
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def test_clear_bindings!
end

def test_stat
assert @stmt.stat.is_a?(Hash)
assert_kind_of Hash, @stmt.stat
end

def test_stat_fullscan_steps
Expand Down

0 comments on commit a8390e9

Please sign in to comment.