aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/qstring_qkeysequence_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/qstring_qkeysequence_test.py')
-rw-r--r--tests/QtGui/qstring_qkeysequence_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/QtGui/qstring_qkeysequence_test.py b/tests/QtGui/qstring_qkeysequence_test.py
index 15db935af..e8e307daa 100644
--- a/tests/QtGui/qstring_qkeysequence_test.py
+++ b/tests/QtGui/qstring_qkeysequence_test.py
@@ -3,9 +3,9 @@
'''Tests conversions of QString to and from QKeySequence.'''
import unittest
+import py3kcompat as py3k
from helper import UsesQApplication
-from PySide.QtCore import *
from PySide.QtGui import QKeySequence, QAction
class QStringQKeySequenceTest(UsesQApplication):
@@ -19,7 +19,7 @@ class QStringQKeySequenceTest(UsesQApplication):
def testPythonStringAsQKeySequence(self):
'''Passes a Python string to an argument expecting a QKeySequence.'''
- keyseq = u'Ctrl+A'
+ keyseq = py3k.unicode_('Ctrl+A')
action = QAction(None)
action.setShortcut(keyseq)
shortcut = action.shortcut()