Skip to content

Commit

Permalink
tests(fix): Update test_setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG committed Apr 10, 2023
1 parent 9ac0c55 commit 4997021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mss/tests/test_setup.py
Expand Up @@ -17,7 +17,7 @@
CHECK = "twine check dist/*".split()


@pytest.mark.xfail(True, "Issue #243")
@pytest.mark.xfail(True, reason="Issue #243")
def test_sdist():
output = check_output(SDIST, stderr=STDOUT, text=True)
expected = f"""
Expand Down Expand Up @@ -111,7 +111,7 @@ def test_sdist():
check_call(CHECK)


@pytest.mark.xfail(True, "Issue #243")
@pytest.mark.xfail(True, reason="Issue #243")
def test_wheel():
output = check_output(WHEEL, stderr=STDOUT, text=True)
expected = f"""
Expand Down

0 comments on commit 4997021

Please sign in to comment.