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 7131d4e commit b342a8aCopy full SHA for b342a8a
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"
@@ -24,7 +27,7 @@ import (
24
27
)
25
28
26
29
// UpdateCassettes will update all cassettes of a given test
-var UpdateCassettes = flag.Bool("cassettes", os.Getenv("TF_UPDATE_CASSETTES") == "true", "Record Cassettes")
30
+var UpdateCassettes = flag.Bool("cassettes", os.Getenv(env.UpdateCassettes) == "true", "Record Cassettes")
31
32
func PreCheck(_ *testing.T) {}
33
0 commit comments