Remove test_reconverted from qenum_key tests.

The test didn't really seem to test anything useful, and also uses a QFlags
instead of a QEnum.
This commit is contained in:
Florian Bruhin 2015-04-03 23:05:08 +02:00
parent 96a600e9dc
commit fba0ae69ce

View File

@ -75,12 +75,3 @@ def test_unknown():
key = debug.qenum_key(QFrame, 0x1337, klass=QFrame.Shadow)
assert key == '0x1337'
def test_reconverted():
"""Test passing a flag value which was re-converted to an enum."""
pytest.skip(msg="It is not clear what this test is supposed to do")
# FIXME maybe this should return the right thing anyways?
debug.qenum_key(Qt, Qt.Alignment(int(Qt.AlignLeft)))