remove passed dr from previous PR
diff --git a/digest_auth_client.go b/digest_auth_client.go
index 1a3108c..d2aefab 100644
--- a/digest_auth_client.go
+++ b/digest_auth_client.go
@@ -32,7 +32,6 @@
 	dr := DigestRequest{}
 	dr.UpdateRequest(username, password, method, uri, body)
 	dr.CertVal = true
-	dr.Timeout = 30 * time.Second
 	return dr
 }
 
@@ -89,7 +88,6 @@
 	}
 
 	dr := NewRequest(username, password, method, uri, body)
-	dr.Timeout = dt.Timeout
 	return dr.Execute()
 }