Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): update rubocop-minitest requirement from 0.34.3 to 0.34.5 #493

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading