Skip to content

Commit 195640d

Browse files
fix: correct env variable name
Co-authored-by: Kamalpreet Kaur <[email protected]>
1 parent 382329c commit 195640d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/local.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
if (!isset($USERNAME)) {
2828
$USERNAME = constant('BROWSERSTACK_USERNAME');
2929
}
30-
if (!isset($USERNAME)) {
30+
if (!isset($ACCESS_KEY)) {
3131
$ACCESS_KEY = constant('BROWSERSTACK_ACCESS_KEY');
3232
}
3333

scripts/parallel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
if (!isset($USERNAME)) {
1414
$USERNAME = constant('BROWSERSTACK_USERNAME');
1515
}
16-
if (!isset($USERNAME)) {
16+
if (!isset($ACCESS_KEY)) {
1717
$ACCESS_KEY = constant('BROWSERSTACK_ACCESS_KEY');
1818
}
1919

scripts/single.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
if (!isset($USERNAME)) {
2626
$USERNAME = constant('BROWSERSTACK_USERNAME');
2727
}
28-
if (!isset($USERNAME)) {
28+
if (!isset($ACCESS_KEY)) {
2929
$ACCESS_KEY = constant('BROWSERSTACK_ACCESS_KEY');
3030
}
3131

0 commit comments

Comments
 (0)