Fix multiline function call style violations
Expand mixed inline/multiline function calls so each argument is on its own line, matching the one-argument-per-line rule. Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
@@ -332,8 +332,11 @@ func TestFileCategories(t *testing.T) {
|
||||
|
||||
err := v.Validate("test"+otherTC.validExt, otherTC.validMimeType, 1024)
|
||||
if err == nil {
|
||||
t.Errorf("Expected error when validating %s file with %s validator, but got none",
|
||||
otherTC.category, tc.category)
|
||||
t.Errorf(
|
||||
"Expected error when validating %s file with %s validator, but got none",
|
||||
otherTC.category,
|
||||
tc.category,
|
||||
)
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user