Remove leading/trailing newlines following whitespace linter recommendation

This commit is contained in:
Arthur Mello
2019-12-05 23:27:01 -03:00
parent a077482e99
commit d4fa006ccb
10 changed files with 0 additions and 13 deletions

View File

@@ -79,7 +79,6 @@ func TestLocalPackageReader_Read_empty(t *testing.T) {
assert.Contains(t, err.Error(), "must specify package path")
}
assert.Nil(t, nodes)
}
func TestLocalPackageReader_Read_pkg(t *testing.T) {
@@ -207,7 +206,6 @@ func TestLocalPackageReader_Read_pkgOmitAnnotations(t *testing.T) {
{path: s.root},
}
for _, p := range paths {
// empty path
rfr := LocalPackageReader{PackagePath: p.path, OmitReaderAnnotations: true}
nodes, err := rfr.Read()