Skip to content

Commit

Permalink
fix messages.json path
Browse files Browse the repository at this point in the history
  • Loading branch information
MHHukiewitz committed Sep 5, 2023
1 parent ec513ee commit 4ea5974
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@ def substrate_account() -> substrate.DOTAccount:

@pytest.fixture
def messages():
with open("./messages.json") as f:
messages_path = Path(__file__).parent / "messages.json"
with open(messages_path) as f:
return json.load(f)

0 comments on commit 4ea5974

Please sign in to comment.