summaryrefslogtreecommitdiffstats
path: root/common/herrors
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-02 13:23:25 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-03 13:12:58 +0100
commitd90e37e0c6e812f9913bf256c9c81aa05b7a08aa (patch)
tree7b1b14464eefec1188ca2eed53c64e4823453cc9 /common/herrors
parent32471b57bde51c55a15dbf1db75d6e5f7232c347 (diff)
all: Format code with gofumpt
See https://github.com/mvdan/gofumpt
Diffstat (limited to 'common/herrors')
-rw-r--r--common/herrors/error_locator_test.go1
-rw-r--r--common/herrors/file_error.go4
-rw-r--r--common/herrors/file_error_test.go1
3 files changed, 1 insertions, 5 deletions
diff --git a/common/herrors/error_locator_test.go b/common/herrors/error_locator_test.go
index bc34a2cdf..0cd5fb2d7 100644
--- a/common/herrors/error_locator_test.go
+++ b/common/herrors/error_locator_test.go
@@ -125,5 +125,4 @@ E`, offsetMatcher)
c.Assert(location.Lines, qt.DeepEquals, []string{"A", "B", "C", "D"})
c.Assert(location.Position().LineNumber, qt.Equals, 2)
c.Assert(location.LinesPos, qt.Equals, 1)
-
}
diff --git a/common/herrors/file_error.go b/common/herrors/file_error.go
index 039c25dc8..1cb31ff9f 100644
--- a/common/herrors/file_error.go
+++ b/common/herrors/file_error.go
@@ -21,9 +21,7 @@ import (
"github.com/pkg/errors"
)
-var (
- _ causer = (*fileError)(nil)
-)
+var _ causer = (*fileError)(nil)
// FileError represents an error when handling a file: Parsing a config file,
// execute a template etc.
diff --git a/common/herrors/file_error_test.go b/common/herrors/file_error_test.go
index b1b5c5a02..4b42f8f39 100644
--- a/common/herrors/file_error_test.go
+++ b/common/herrors/file_error_test.go
@@ -52,5 +52,4 @@ func TestToLineNumberError(t *testing.T) {
c.Assert(pos.ColumnNumber, qt.Equals, test.columnNumber, errMsg)
c.Assert(errors.Cause(got), qt.Not(qt.IsNil))
}
-
}