Skip to content

Commit 52cae8a

Browse files
committed
Fix several test cases for the cluster client
1 parent 15c8c92 commit 52cae8a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

cluster/test/client_internals_test.rb

+5-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ def test_inspect
5656
def test_acl_auth_success
5757
target_version "6.0.0" do
5858
with_acl do |username, password|
59-
r = _new_client(nodes: DEFAULT_PORTS.map { |port| "redis://#{username}:#{password}@#{DEFAULT_HOST}:#{port}" })
59+
nodes = DEFAULT_PORTS.map { |port| "redis://#{username}:#{password}@#{DEFAULT_HOST}:#{port}" }
60+
r = _new_client(nodes: nodes)
6061
assert_equal('PONG', r.ping)
6162
end
6263
end
@@ -66,7 +67,9 @@ def test_acl_auth_failure
6667
target_version "6.0.0" do
6768
with_acl do |username, _|
6869
assert_raises(Redis::Cluster::InitialSetupError) do
69-
_new_client(nodes: DEFAULT_PORTS.map { |port| "redis://#{username}:wrongpassword@#{DEFAULT_HOST}:#{port}" })
70+
nodes = DEFAULT_PORTS.map { |port| "redis://#{username}:wrongpassword@#{DEFAULT_HOST}:#{port}" }
71+
r = _new_client(nodes: nodes)
72+
r.ping
7073
end
7174
end
7275
end

0 commit comments

Comments
 (0)