Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AchoArnold committed Mar 24, 2024
1 parent 036f0f4 commit bd4f075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkouts_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func TestCheckoutService_Create(t *testing.T) {
client := New(WithBaseURL(server.URL))

// Act
expireAt := time.Now().UTC()
expireAt := time.Now().UTC().Format(time.RFC3339)
customPrice := 5000
checkout, response, err := client.Checkouts.Create(context.Background(), 1, 1, &CheckoutCreateAttributes{
CustomPrice: &customPrice,
Expand Down

0 comments on commit bd4f075

Please sign in to comment.