Blob Blame History Raw
diff -up pyqtgraph-0.9.10/pyqtgraph/parametertree/tests/test_parametertypes.py.testfixes pyqtgraph-0.9.10/pyqtgraph/parametertree/tests/test_parametertypes.py
--- pyqtgraph-0.9.10/pyqtgraph/parametertree/tests/test_parametertypes.py.testfixes	2014-12-24 14:34:58.000000000 -0500
+++ pyqtgraph-0.9.10/pyqtgraph/parametertree/tests/test_parametertypes.py	2015-08-05 23:34:14.357839562 -0400
@@ -12,7 +12,7 @@ def test_opts():
     tree = pt.ParameterTree()
     tree.setParameters(param)
 
-    assert param.param('bool').items.keys()[0].widget.isEnabled() is False
-    assert param.param('color').items.keys()[0].widget.isEnabled() is False
+    assert list(param.param('bool').items.keys())[0].widget.isEnabled() is False
+    assert list(param.param('color').items.keys())[0].widget.isEnabled() is False
 
 
diff -up pyqtgraph-0.9.10/pyqtgraph/tests/test_exit_crash.py.testfixes pyqtgraph-0.9.10/pyqtgraph/tests/test_exit_crash.py
--- pyqtgraph-0.9.10/pyqtgraph/tests/test_exit_crash.py.testfixes	2014-12-24 14:34:58.000000000 -0500
+++ pyqtgraph-0.9.10/pyqtgraph/tests/test_exit_crash.py	2015-08-04 22:39:46.486641733 -0400
@@ -29,7 +29,7 @@ def test_exit_crash():
         if not isinstance(obj, type) or not issubclass(obj, pg.QtGui.QWidget):
             continue
         
-        print name
+        print(name)
         argstr = initArgs.get(name, "")
         open(tmp, 'w').write(code.format(path=path, classname=name, args=argstr))
         proc = subprocess.Popen([sys.executable, tmp])