Skip to content

Commit

Permalink
Test the failure of integration test
Browse files Browse the repository at this point in the history
Signed-off-by: clyang82 <[email protected]>
  • Loading branch information
clyang82 committed Dec 18, 2024
1 parent eddc46d commit e6c2785
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/registration.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ func RegisterIntegration(t *testing.T) (*Helper, *openapi.APIClient) {
// Create a new helper
helper := NewHelper(t)
// Reset the database to a seeded blank state
helper.ResetDB()
err := helper.ResetDB()
if err != nil {
t.Fatal(err)
}
// Create an api client
client := helper.NewApiClient()

Expand Down

0 comments on commit e6c2785

Please sign in to comment.