Skip to content

Commit

Permalink
fix: change var env name
Browse files Browse the repository at this point in the history
  • Loading branch information
RonanMorgan committed Dec 17, 2024
1 parent a2f00fe commit bdf96f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ def test_engine_online(tmpdir_factory, mock_wildfire_stream, mock_wildfire_image
load_dotenv(Path(__file__).parent.parent.joinpath(".env").absolute())
api_host = os.environ.get("API_URL")
camera_id = os.environ.get("CAMERA_ID")
superuser_login = os.environ.get("SUPERADMIN_LOGIN")
superuser_pwd = os.environ.get("SUPERADMIN_PWD")
superuser_login = os.environ.get("API_LOGIN")
superuser_pwd = os.environ.get("API_PWD")

# Skip the API-related tests if the URL is not specified
if isinstance(api_host, str):
Expand Down

0 comments on commit bdf96f0

Please sign in to comment.