We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2288e1 commit 2df3c1bCopy full SHA for 2df3c1b
internal/provider/role_resource_test.go
@@ -2,14 +2,15 @@ package provider
2
3
import (
4
"fmt"
5
+ "math/rand"
6
"testing"
7
"time"
8
9
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
10
)
11
12
func TestResources(t *testing.T) {
- testID := fmt.Sprintf("test-%d", time.Now().Unix())
13
+ testID := fmt.Sprintf("test-%d-%d", time.Now().Unix(), rand.Intn(10000))
14
resource.Test(t, resource.TestCase{
15
ProtoV6ProviderFactories: testAccProtoV6ProviderFactories,
16
Steps: []resource.TestStep{
0 commit comments