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 4a145b2 commit ea1314fCopy full SHA for ea1314f
internal/acctest/acctest.go
@@ -6,7 +6,10 @@ import (
6
"encoding/xml"
7
"flag"
8
"net/http"
9
+ "flag"
10
+ "net/http"
11
"os"
12
+ "strconv"
13
"strings"
14
"testing"
15
"time"
@@ -27,7 +30,7 @@ import (
27
30
)
28
31
29
32
// UpdateCassettes will update all cassettes of a given test
-var UpdateCassettes = flag.Bool("cassettes", os.Getenv("TF_UPDATE_CASSETTES") == "true", "Record Cassettes")
33
+var UpdateCassettes = flag.Bool("cassettes", os.Getenv(env.UpdateCassettes) == "true", "Record Cassettes")
34
35
func PreCheck(_ *testing.T) {}
36
0 commit comments