Add \n between package declaration and imports

This commit is contained in:
Daniele Tricoli 2015-12-11 03:43:36 +01:00
parent 1e67d08e49
commit ba97122714

View file

@ -1,4 +1,5 @@
package format // import "eriol.xyz/piken/format"
import (
"strconv"
"testing"
@ -44,5 +45,4 @@ func TestFormat(t *testing.T) {
[]string{"Name"}, " -- ", false)
b, _ = formatter.Format(&s)
assert.Equal(t, b, "FACE WITH TEARS OF JOY")
}