Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: Soham Arora <[email protected]>
  • Loading branch information
arorasoham9 committed Aug 15, 2024
1 parent bd1f6fa commit e334803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/analyzer/analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ func CompareAllPaths(listOne, listTwo [][]*Node) (DiffResult, error) {
dmp := diffmatchpatch.New()
diffNode, _, err := compareNodes(dmp, *node, *dumnode)
if err != nil {
return DiffResult{}, fmt.Errorf("error comparing nodes %v", fmt.Errorf(err.Error()))
return DiffResult{}, fmt.Errorf("error comparing nodes %v", err.Error())
}
missingPath = append(missingPath, diffNode)

Expand Down

0 comments on commit e334803

Please sign in to comment.