aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2010-12-17 11:28:01 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:47:59 -0300
commit937b2cfc6d39b8fc915faec644b4c578ce3fadc5 (patch)
tree0aaff489d57f72cf663ca2a436898a8d775d6748 /tests
parentd4318366f11c910edc9d305d1c9db3924677bf4d (diff)
Updated model/view test to follow changes in Shiboken/9459b9da commit.
Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/pysidetest/modelview_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pysidetest/modelview_test.py b/tests/pysidetest/modelview_test.py
index 8629b61c9..94cf3f08e 100644
--- a/tests/pysidetest/modelview_test.py
+++ b/tests/pysidetest/modelview_test.py
@@ -48,7 +48,7 @@ class ModelViewTest(unittest.TestCase):
model = ListModelDoesntKeepsReference()
view = TestView(model)
obj = view.getData()
- self.assertEqual(type(obj), QObject)
+ self.assertEqual(type(obj), MyObject)
self.assertEqual(obj.objectName(), object_name)
def testListModelKeepsReference(self):