Skip to content

Commit

Permalink
fix(test): expires at has property too less miliseconds digits
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszjenek committed Apr 17, 2024
1 parent bd687ec commit 8e1d366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/resource_service_user_token_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func TestAccResourceServiceUserToken(t *testing.T) {
tokenId = "test-token-id"
description = "Test token description"
)
expiresAt := time.Now().Add(24 * time.Hour).Format("2006-01-02T15:04:05.999Z")
expiresAt := time.Now().Add(24 * time.Hour).Format("2006-01-02T15:04:05Z")

resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Expand Down

0 comments on commit 8e1d366

Please sign in to comment.