aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/tests/QtCore/qbytearray_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/tests/QtCore/qbytearray_test.py')
-rw-r--r--sources/pyside2/tests/QtCore/qbytearray_test.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/sources/pyside2/tests/QtCore/qbytearray_test.py b/sources/pyside2/tests/QtCore/qbytearray_test.py
index c17b7efb1..5202569f1 100644
--- a/sources/pyside2/tests/QtCore/qbytearray_test.py
+++ b/sources/pyside2/tests/QtCore/qbytearray_test.py
@@ -165,12 +165,6 @@ class TestBug567(unittest.TestCase):
self.assertEqual(ba[::-2], '08642')
self.assertEqual(ba[2:8:3], '36')
-class QByteArrayBug514(unittest.TestCase):
- def testIt(self):
- data = py3k.b("foobar")
- a = QByteArray.fromRawData(data)
- self.assertEqual(type(a), QByteArray)
- self.assertEqual(a.data(), data)
class TestPickler(unittest.TestCase):
def testIt(self):