summaryrefslogtreecommitdiffstats
path: root/common/herrors/file_error_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/herrors/file_error_test.go')
-rw-r--r--common/herrors/file_error_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/herrors/file_error_test.go b/common/herrors/file_error_test.go
index e6595aa28..41e244109 100644
--- a/common/herrors/file_error_test.go
+++ b/common/herrors/file_error_test.go
@@ -41,7 +41,7 @@ func TestNewFileError(t *testing.T) {
fe.UpdatePosition(text.Position{LineNumber: 32, ColumnNumber: 2})
c.Assert(fe.Error(), qt.Equals, `"foo.html:32:2": bar`)
fe.UpdatePosition(text.Position{LineNumber: 0, ColumnNumber: 0, Offset: 212})
- fe.UpdateContent(strings.NewReader(lines), SimpleLineMatcher)
+ fe.UpdateContent(strings.NewReader(lines), nil)
c.Assert(fe.Error(), qt.Equals, `"foo.html:32:0": bar`)
errorContext := fe.ErrorContext()
c.Assert(errorContext, qt.IsNotNil)