Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusfcr committed Apr 5, 2024
1 parent 7555dde commit 75728a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/tracking/jira/tickets_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ func TestGetTicket(t *testing.T) {
tickets: tickets,
},
Logger: &mockLogger{},
URL: "https://www.example.com/jira/",
},
want: model.Ticket{
ID: "1000",
Expand All @@ -142,7 +143,7 @@ func TestGetTicket(t *testing.T) {
Status: ToDo,
TicketType: "Vulnerability",
Labels: []string{"Vulnerability"},
URLTracker: "/browse/TEST-1",
URLTracker: "https://www.example.com/jira/browse/TEST-1",
},
wantErr: nil,
},
Expand Down

0 comments on commit 75728a8

Please sign in to comment.