Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef-Friedrich committed Jan 17, 2024
1 parent 3e74746 commit 4d274ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ def test_option_synchronize() -> None:

class TestOptionJson:
@pytest.mark.legacy
def test_legacy(self):
def test_legacy(self) -> None:
score = (
Cli("meta", "--json", legacy=True)
.append_score("meta-all-values.mscz")
Expand All @@ -1084,7 +1084,7 @@ def test_legacy(self):
assert json.exists()
assert '"readonly_basename": "meta-all-values"' in helper.read_file(json)

def test_json(self):
def test_json(self) -> None:
score = (Cli("--json").append_score("meta-all-values.mscz").execute()).score()
json = score.json_file
assert json.exists()
Expand Down

0 comments on commit 4d274ba

Please sign in to comment.