Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tetrergeru committed Feb 4, 2025
1 parent c19db10 commit cc72419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/controller/contact_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ func TestGetAllContacts(t *testing.T) {
So(err, ShouldBeNil)
expectedContacts := []dto.TeamContact{
{
ID: uuid.Must(uuid.NewV4()).String(),
ID: contacts[0].ID,
Type: "mail",
User: "user1",
Value: "good@mail.com",
},
{
ID: uuid.Must(uuid.NewV4()).String(),
ID: contacts[1].ID,
Type: "pushover",
User: "user2",
Value: "ggg1",
Expand Down

0 comments on commit cc72419

Please sign in to comment.