Skip to content

Commit

Permalink
Merge pull request #166 from redis-rb/dependabot/bundler/rubocop-1.50.2
Browse files Browse the repository at this point in the history
Bump rubocop from 1.28.2 to 1.50.2
  • Loading branch information
casperisfine authored Jan 23, 2024
2 parents 51be2fc + 6b37c33 commit 8c2f96f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
13 changes: 8 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ GEM
connection_pool (2.4.1)
hiredis (0.6.3)
hiredis (0.6.3-java)
json (2.7.1)
json (2.7.1-java)
minitest (5.21.2)
parallel (1.24.0)
parser (3.3.0.5)
Expand All @@ -27,15 +29,16 @@ GEM
redis (4.6.0)
regexp_parser (2.9.0)
rexml (3.2.6)
rubocop (1.28.2)
rubocop (1.50.2)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.1.0.0)
parser (>= 3.2.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.17.0, < 2.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-minitest (0.27.0)
Expand Down
4 changes: 2 additions & 2 deletions test/redis_client_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,13 @@ def test_path

def test_username
username = "test"
client = new_client(**{ username: username })
client = new_client(username: username)
assert_equal username, client.username
end

def test_password
password = "test"
client = new_client(**{ password: password })
client = new_client(password: password)
assert_equal password, client.password
end

Expand Down

0 comments on commit 8c2f96f

Please sign in to comment.