aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-12-05 20:02:07 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:56:20 -0300
commit1af53541bf90b74c350d83507932fd694a5c0283 (patch)
tree0a30f01224810045af37024a0f83a66498b3cf02 /tests
parent2a87b74bfea936691db2eb97a8ab2788277869b6 (diff)
Fix compilation of conversion branch against Python3k.
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/QtSql/qvarianttype_test.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/QtSql/qvarianttype_test.py b/tests/QtSql/qvarianttype_test.py
index 89364e52b..5612f89f4 100644
--- a/tests/QtSql/qvarianttype_test.py
+++ b/tests/QtSql/qvarianttype_test.py
@@ -8,9 +8,6 @@ class QVariantTypeTest(unittest.TestCase):
f = QSqlField("name", str)
self.assertEqual(f.type(), py3k.unicode)
- f = QSqlField("name", str)
- self.assertEqual(f.type(), py3k.unicode)
-
f = QSqlField("name", "QString")
self.assertEqual(f.type(), py3k.unicode)