aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qtcore/qenum_test.py
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-01-22 19:09:39 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-01-22 19:09:39 -0200
commit50e8fc385b2221835f34cfa5b3aedf9740e0274f (patch)
tree5f2812f9ea4acbcdd317c4832cbc06e6087351cb /tests/qtcore/qenum_test.py
parent2992bb3fb8a6162061a3834031ae56ed4ed7e990 (diff)
We can't ensure that the last enum value of QVariant will be fixed forever,
e.g. On Qt4.6 there are new values and they changed.
Diffstat (limited to 'tests/qtcore/qenum_test.py')
-rw-r--r--tests/qtcore/qenum_test.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/qtcore/qenum_test.py b/tests/qtcore/qenum_test.py
index 5f395526c..e3f963869 100644
--- a/tests/qtcore/qenum_test.py
+++ b/tests/qtcore/qenum_test.py
@@ -41,10 +41,5 @@ class TestQFlags(unittest.TestCase):
except:
pass
-class TestDuplicatedValues(unittest.TestCase):
- def testQVariant(self):
- self.assertEqual(QVariant.LastCoreType, QVariant.Hash)
- self.assertEqual(QVariant.LastGuiType, QVariant.Transform)
-
if __name__ == '__main__':
unittest.main()