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 c05f176 commit 38de63eCopy full SHA for 38de63e
internal/provider/provider_test.go
@@ -44,6 +44,8 @@ func testAccPreCheck(t *testing.T) {
44
t.Fatal("IOSXE_PASSWORD env variable must be set for acceptance tests")
45
}
46
if v := os.Getenv("IOSXE_HOST"); v == "" {
47
- t.Fatal("IOSXE_HOST env variable must be set for acceptance tests")
+ if v := os.Getenv("IOSXE_URL"); v == "" {
48
+ t.Fatal("IOSXE_HOST or IOSXE_URL env variable must be set for acceptance tests")
49
+ }
50
51
0 commit comments