File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ def test_inspect
56
56
def test_acl_auth_success
57
57
target_version "6.0.0" do
58
58
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 )
60
61
assert_equal ( 'PONG' , r . ping )
61
62
end
62
63
end
@@ -66,7 +67,9 @@ def test_acl_auth_failure
66
67
target_version "6.0.0" do
67
68
with_acl do |username , _ |
68
69
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
70
73
end
71
74
end
72
75
end
You can’t perform that action at this time.
0 commit comments