Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yrobla committed Apr 25, 2024
1 parent 5738516 commit aa842c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/parser/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func TestParse(t *testing.T) {
filename: "go.mod",
content: "module example.com\n\ngo 1.16\n\nrequire (\n\tgithub.com/google/go-github/v60 v60.0.0\n)",
expected: []types.Dependency{
{Name: "github.com%2Fgoogle%2Fgo-github%2Fv60", Version: "v60.0.0"},
{Name: "github.com/google/go-github/v60", Version: "v60.0.0"},
},
ecosystem: "go",
err: nil,
Expand Down

0 comments on commit aa842c7

Please sign in to comment.