Chore: Enable whitespace linter (#25903)

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
Arve Knudsen
2020-07-06 20:17:28 +02:00
committed by GitHub
parent 42295898b8
commit 41d432b5ae
189 changed files with 3 additions and 303 deletions

View File

@ -7,9 +7,7 @@ import (
)
func TestEncryption(t *testing.T) {
Convey("When getting encryption key", t, func() {
key, err := encryptionKeyToBytes("secret", "salt")
So(err, ShouldBeNil)
So(len(key), ShouldEqual, 32)
@ -27,5 +25,4 @@ func TestEncryption(t *testing.T) {
So(decryptErr, ShouldBeNil)
So(string(decrypted), ShouldEqual, "grafana")
})
}