aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_740.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/bug_740.py')
-rw-r--r--tests/QtGui/bug_740.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/QtGui/bug_740.py b/tests/QtGui/bug_740.py
index 634a99e25..302a1a13f 100644
--- a/tests/QtGui/bug_740.py
+++ b/tests/QtGui/bug_740.py
@@ -1,12 +1,12 @@
import unittest
-
+import py3kcompat as py3k
from helper import UsesQApplication
from PySide.QtCore import QSize
-from PySide.QtGui import QBitmap, QImage, QLabel
+from PySide.QtGui import QBitmap, QImage
class TestQBitmap(UsesQApplication):
def testFromDataMethod(self):
- dataBits = '\x38\x28\x38\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\xfe\xfe\x7c\x7c\x38\x38\x10\x10'
+ dataBits = py3k.b('\x38\x28\x38\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\xfe\xfe\x7c\x7c\x38\x38\x10\x10')
bim = QBitmap.fromData(QSize(8, 48), dataBits, QImage.Format_Mono) # missing function
if __name__ == '__main__':