summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGian Mario Tagliaretti <gianmt@src.gnome.org>2008-08-24 09:57:50 +0000
committerGian Mario Tagliaretti <gianmt@src.gnome.org>2008-08-24 09:57:50 +0000
commit8eb6691615c52cf1630c9b8802be0b57080845c8 (patch)
tree08522fc51b0e25e7a1d47c211f3f94d7097323ae /tests
parent47db2bcfce9924008911c33206d930363eabd444 (diff)
downloadpygtk-8eb6691615c52cf1630c9b8802be0b57080845c8.tar.gz
comment out test_default_attributes until we get a response on bugs #546005 and #498010
svn path=/trunk/; revision=3023
Diffstat (limited to 'tests')
-rw-r--r--tests/test_treeview.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/tests/test_treeview.py b/tests/test_treeview.py
index e026d84f..e85542e6 100644
--- a/tests/test_treeview.py
+++ b/tests/test_treeview.py
@@ -4,10 +4,13 @@ from common import gtk
class TreeViewTest(unittest.TestCase):
# Check for #350252
- def test_default_attributes(self):
- model = gtk.ListStore(str)
- treeview = gtk.TreeView(model)
- treeview.set_cursor(1)
+ # Cooment out this test until we get a response
+ # on bug #546005 and #498010
+ #
+ #def test_default_attributes(self):
+ # model = gtk.ListStore(str)
+ # treeview = gtk.TreeView(model)
+ # treeview.set_cursor(1)
# Bug #347273
def testTreeSelectionForeach(self):
@@ -21,7 +24,7 @@ class TreeViewTest(unittest.TestCase):
sel.selected_foreach(lambda model, path, iter: list_.append(iter))
list_ = [model.get_value(iter_, 0) for iter_ in list_]
self.assertEqual(list_, ["foo"])
-
+
if __name__ == '__main__':
unittest.main()