Getting tests to use dummy client

This commit is contained in:
MichaelOultram 2015-08-15 16:03:24 +01:00
parent 0383202304
commit 4ae3052684

View file

@ -28,13 +28,14 @@ func Test(password, ip, port string, accesstokens []string) {
} }
func (t TestSettings) createClient(uname string) *gumble.Client { func (t TestSettings) createClient(uname string) *gumble.Client {
client := gumble.NewClient(&gumble.Config{ config := gumble.Config{
Username: uname, Username: uname,
Password: t.password, Password: t.password,
Address: t.ip + ":" + t.port, Address: t.ip + ":" + t.port,
Tokens: t.accesstokens, Tokens: t.accesstokens,
}) }
gumbleutil.CertificateLockFile(client, fmt.Sprintf("%s/.mumbledj/cert.lock", dj.homeDir)) config.TLSConfig.InsecureSkipVerify = true
client := gumble.NewClient(&config)
return client return client
} }