Skip to content

Commit

Permalink
fixing api tests based on new errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmenendez committed Oct 29, 2024
1 parent 53c1de6 commit 15c1cf9
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions api/users_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,17 +125,6 @@ func TestRegisterHandler(t *testing.T) {
}),
expectedStatus: http.StatusBadRequest,
},
{
uri: registerURL,
method: http.MethodPost,
body: mustMarshal(&UserInfo{
Email: "[email protected]",
Password: "password",
FirstName: "first",
LastName: "last",
}),
expectedStatus: http.StatusBadRequest,
},
}

for _, testCase := range testCases {
Expand Down

0 comments on commit 15c1cf9

Please sign in to comment.