Skip to content

Commit

Permalink
monkeypatch the RAINDROP env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaOliphant committed Aug 26, 2023
1 parent e77edbe commit 59d966f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_raindrop_api.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import pytest
from httpx import Response
from pytest_httpx import HTTPXMock
from avocet.raindrop_api import RaindropAPI

@pytest.fixture
def api():
def api(monkeypatch):
monkeypatch.setenv("RAINDROP", "fake_token_value")
return RaindropAPI()

@pytest.mark.asyncio
Expand Down

0 comments on commit 59d966f

Please sign in to comment.