Fix broken build because of go fmt issue
authorIvan Babrou <ibobrik@gmail.com>
Tue, 25 Sep 2018 18:54:33 +0000 (11:54 -0700)
committerIvan Babrou <ibobrik@gmail.com>
Tue, 25 Sep 2018 19:42:18 +0000 (12:42 -0700)
commit7e5cb78d2da924f939b88cf0b25198c4350417e8
tree0bd26943304e6ee64efc418d4f4576c4da9f5c39
parent9a02cbf751629830cdf9147d0935abb8fdf2dc17
Fix broken build because of go fmt issue

```
$ make
>> checking code style
! gofmt -d $(find . -path ./vendor -prune -o -name '*.go' -print) | grep '^'
diff -u ./prober/utils_test.go.orig ./prober/utils_test.go
--- ./prober/utils_test.go.orig 2018-09-25 11:52:34.000000000 -0700
+++ ./prober/utils_test.go 2018-09-25 11:52:34.000000000 -0700
@@ -43,7 +43,7 @@
    publickey := &privatekey.PublicKey

    cert := x509.Certificate{
- IsCA: true,
+ IsCA:                  true,
BasicConstraintsValid: true,
SubjectKeyId:          []byte{1},
SerialNumber:          big.NewInt(1),
make: *** [style] Error 1
```

Signed-off-by: Ivan Babrou <ibobrik@gmail.com>
prober/utils_test.go