aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtCore
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtCore')
-rw-r--r--tests/QtCore/qstring_test.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/QtCore/qstring_test.py b/tests/QtCore/qstring_test.py
index fbaa6d440..1b98de767 100644
--- a/tests/QtCore/qstring_test.py
+++ b/tests/QtCore/qstring_test.py
@@ -20,15 +20,5 @@ class QStringConstructor(unittest.TestCase):
obj.setObjectName(None)
self.assertEqual(obj.objectName(), u'')
-class QStringImplicitConvertion(unittest.TestCase):
- '''Implicit conversions for QString'''
-
- def testQByteArray(self):
- '''QString implicitly conversion: QByteArray'''
- obj = QObject()
- obj.setObjectName(QByteArray('foobar'))
- self.assertEqual(obj.objectName(), u'foobar')
-
-
if __name__ == '__main__':
unittest.main()