Skip to content

Commit 98d7b80

Browse files
authored
testrunner: add newline after error message (#3763)
1 parent 08cf9ee commit 98d7b80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/testrunner/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ func parseConfig(content string) (*Config, error) {
274274
// Parse rule
275275
rule, err := parseConfigRule(line, scanner.Text())
276276
if err != nil {
277-
fmt.Printf("Error parsing config line %d: %q - %v", lineNum, line, err)
277+
fmt.Printf("Error parsing config line %d: %q - %v\n", lineNum, line, err)
278278
continue
279279
}
280280

0 commit comments

Comments
 (0)