Skip to content

Commit

Permalink
fix pr %e comment
Browse files Browse the repository at this point in the history
Signed-off-by: balteraivshay <[email protected]>
  • Loading branch information
balteravishay committed Sep 29, 2024
1 parent 6009db6 commit 8cc6b9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion checks/raw/pinned_dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func analyseCsprojLockedMode(path string, content []byte, args ...interface{}) (
}

dl.Warn(&checker.LogMessage{
Text: fmt.Sprintf("malformed csproj file: %e", err),
Text: fmt.Sprintf("malformed csproj file: %v", err),
})
return true, nil
}
Expand Down
2 changes: 1 addition & 1 deletion checks/raw/pinned_dependencies_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2141,7 +2141,7 @@ func TestCsProjAnalysis(t *testing.T) {

_, err = analyseCsprojLockedMode(p, content, &r, &dl)
if err != nil {
t.Errorf("unexpected error %e", err)
t.Errorf("unexpected error %v", err)
return
}
if tt.expectErrorLogs {
Expand Down

0 comments on commit 8cc6b9b

Please sign in to comment.