From fa5d45541e62be827a0645b9a4d1dd6a5362b5ac Mon Sep 17 00:00:00 2001 From: KITAITI Makoto Date: Sat, 6 Feb 2016 12:58:40 +0900 Subject: [PATCH] Make awere of auth info when open client --- test/test-client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-client.rb b/test/test-client.rb index 060d871..89cdf95 100644 --- a/test/test-client.rb +++ b/test/test-client.rb @@ -50,7 +50,7 @@ def client end def open_client(&block) - options = {:host => @address, :port => @port, :protocol => @protocol} + options = {:host => @address, :port => @port, :protocol => @protocol, :auth_user => @auth_user, :auth_password => @auth_password} Groonga::Client.open(options, &block) end