diff options
Diffstat (limited to 'pkgtools/pkglint/files/autofix_test.go')
-rw-r--r-- | pkgtools/pkglint/files/autofix_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/autofix_test.go b/pkgtools/pkglint/files/autofix_test.go index ba05aca8f4d..e9d00ef809f 100644 --- a/pkgtools/pkglint/files/autofix_test.go +++ b/pkgtools/pkglint/files/autofix_test.go @@ -257,12 +257,12 @@ func (s *Suite) Test_Autofix_show_source_code(c *check.C) { t := s.Init(c) t.SetupCommandLine("--show-autofix", "--source") - lines := t.SetupFileLinesContinuation("Makefile", + mklines := t.SetupFileMkLines("Makefile", MkRcsID, "before \\", "The old song \\", "after") - line := lines[1] + line := mklines.lines[1] { fix := line.Autofix() |