Skip to content

Commit

Permalink
Mark the public/private validate and compute tests as xfails
Browse files Browse the repository at this point in the history
  • Loading branch information
davep committed May 25, 2023
1 parent bd6717f commit fa47d0b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_reactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ def _watch_counter(self) -> None:
assert calls["public"] is True


@pytest.mark.xfail(reason="https://github.com/Textualize/textual/issues/2539")
async def test_public_and_private_validate() -> None:
"""If a reactive/var has public and private validate both should get called."""

Expand All @@ -437,6 +438,7 @@ def _validate_counter(self, _: int) -> None:
assert calls["public"] is True


@pytest.mark.xfail(reason="https://github.com/Textualize/textual/issues/2539")
async def test_public_and_private_compute() -> None:
"""If a reactive/var has public and private compute both should get called."""

Expand Down

0 comments on commit fa47d0b

Please sign in to comment.