Skip to content

Commit

Permalink
chore: Use getenv() instead of environ.get()
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 13, 2023
1 parent 1c2755d commit 595078f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select

BROWSER = os.environ.get("BROWSER", "ChromeHeadless")
BROWSER = os.getenv("BROWSER", "ChromeHeadless")

OCDS_DEFAULT_SCHEMA_VERSION = settings.COVE_CONFIG["schema_version"]
OCDS_SCHEMA_VERSIONS = settings.COVE_CONFIG["schema_version_choices"]
Expand Down

0 comments on commit 595078f

Please sign in to comment.