Skip to content

Commit 7cf755b

Browse files
committed
Fixed xfail call
1 parent 1854fd7 commit 7cf755b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pytestqt/_tests/test_qtest_proxies.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
from pytestqt.qt_compat import USING_PYSIDE
44

55

6-
fails_on_pyqt = pytest.mark.xfail(USING_PYSIDE, reason='not exported by PyQt')
6+
fails_on_pyqt = pytest.mark.xfail(not USING_PYSIDE,
7+
reason='not exported by PyQt')
78

89

910
@pytest.mark.parametrize('expected_method', [

0 commit comments

Comments
 (0)