Skip to content

Commit

Permalink
mypy ignored failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
yfukai committed Jul 10, 2024
1 parent 514fc1e commit d9a977d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,9 @@ def test_gap_closing(shared_datadir: str) -> None:

def test_no_accepting_wrong_argments() -> None:
with pytest.raises(ValidationError):
lt = LapTrack(hogehoge=True)
lt = LapTrack(hogehoge=True) # type: ignore
with pytest.raises(ValidationError):
lt = LapTrack(fugafuga=True)
lt = LapTrack(fugafuga=True) # type: ignore


def test_no_accepting_wrong_backend() -> None:
Expand Down

0 comments on commit d9a977d

Please sign in to comment.