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 4192f85 commit e6ebb4cCopy full SHA for e6ebb4c
gitlab/provider_test.go
@@ -2,6 +2,7 @@ package gitlab
2
3
import (
4
"context"
5
+ "fmt"
6
"os"
7
"testing"
8
@@ -17,7 +18,7 @@ func init() {
17
18
if os.Getenv(resource.TestEnvVar) != "" {
19
testAccProvider = Provider()
20
if err := testAccProvider.Configure(context.TODO(), &terraform.ResourceConfig{}); err != nil {
- panic(err) // lintignore: R009 // TODO: Resolve this tfproviderlint issue
21
+ panic(fmt.Sprintf("%#v", err)) // lintignore: R009 // TODO: Resolve this tfproviderlint issue
22
}
23
testAccProviders = map[string]*schema.Provider{
24
"gitlab": testAccProvider,
0 commit comments