Skip to content

Commit

Permalink
pr: begone line length linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis Raines committed Nov 24, 2021
1 parent 5c988a5 commit 4dc48ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion file/reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ func TestTransformNotFalse(t *testing.T) {
}
defer os.Remove(tmpfile.Name())

if _, err := tmpfile.WriteString("_transform: false\nservices:\n- host: test.com\n name: test service\n"); err != nil {
_, err = tmpfile.WriteString("_transform: false\nservices:\n- host: test.com\n name: test service\n")
if err != nil {
panic(err)
}

Expand Down

0 comments on commit 4dc48ff

Please sign in to comment.