summaryrefslogtreecommitdiff
path: root/tests/pyreverse
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-10-01 21:36:32 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-10-02 21:42:27 +0200
commit3096c80eaf48d7654c093f8326896ab08ad125d4 (patch)
tree568fb5524fbebae48b9250f9a611955ec9598f1c /tests/pyreverse
parent3bd6d7c7d356c6527bf9e96299628c3795c83adc (diff)
downloadpylint-git-3096c80eaf48d7654c093f8326896ab08ad125d4.tar.gz
Remove xfail from passing tests
Diffstat (limited to 'tests/pyreverse')
-rw-r--r--tests/pyreverse/test_diadefs.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/pyreverse/test_diadefs.py b/tests/pyreverse/test_diadefs.py
index 1b32ed79d..9a550c5db 100644
--- a/tests/pyreverse/test_diadefs.py
+++ b/tests/pyreverse/test_diadefs.py
@@ -106,7 +106,6 @@ class TestDefaultDiadefGenerator:
("specialization", "Specialization", "Ancestor"),
]
- @pytest.mark.xfail
def test_extract_relations(self, HANDLER: DiadefsHandler, PROJECT: Project) -> None:
"""Test extract_relations between classes."""
with pytest.warns(DeprecationWarning):
@@ -115,7 +114,6 @@ class TestDefaultDiadefGenerator:
relations = _process_relations(cd.relationships)
assert relations == self._should_rels
- @pytest.mark.xfail
def test_functional_relation_extraction(
self, default_config: PyreverseConfig, get_project: GetProjectCallable
) -> None: