aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/QtCore/qobject_property_test.py4
-rw-r--r--tests/QtNetwork/bug_446.py3
2 files changed, 3 insertions, 4 deletions
diff --git a/tests/QtCore/qobject_property_test.py b/tests/QtCore/qobject_property_test.py
index 6e7046d92..bc38dbb18 100644
--- a/tests/QtCore/qobject_property_test.py
+++ b/tests/QtCore/qobject_property_test.py
@@ -34,7 +34,7 @@ class MyObject(QObject):
def trySetPP(self):
self.pp = 0
- pp = Property(int, readPP)
+ pp = Property(int, readPP, constant=True)
class MyObjectWithNotifyProperty(QObject):
def __init__(self, parent=None):
@@ -200,7 +200,7 @@ class MetaPropertyTest(unittest.TestCase):
mo = obj.metaObject()
self.assertEqual(mo.propertyCount(), 2)
p = mo.property(1)
- self.assertFalsee(p.isConstant())
+ self.assertFalse(p.isConstant())
if __name__ == '__main__':
unittest.main()
diff --git a/tests/QtNetwork/bug_446.py b/tests/QtNetwork/bug_446.py
index 3aa57da5d..d3a9d0986 100644
--- a/tests/QtNetwork/bug_446.py
+++ b/tests/QtNetwork/bug_446.py
@@ -19,8 +19,7 @@ class HttpSignalsCase(UsesQCoreApplication):
self.server.close()
def onReadReady(self):
- buf = None
- data = self.client.read(buf, 100)
+ data = self.client.read(100)
self.assertEqual(data.size(), len(HttpSignalsCase.DATA))
self.assertEqual(data, HttpSignalsCase.DATA)
self.done()