go fmt
diff --git a/context.go b/context.go
index a35242c..28cb5f9 100644
--- a/context.go
+++ b/context.go
@@ -15,10 +15,10 @@
 func TestContext() *Context {
 	return &Context{
 		providerMap: make(map[string]*Provider),
-		httpClient: &http.Client{},
+		httpClient:  &http.Client{},
 	}
 }
 
 func (c *Context) UseCustomClient(hc *http.Client) {
-	c.httpClient = hc;
+	c.httpClient = hc
 }