summaryrefslogtreecommitdiff
path: root/urwid/tests/test_container.py
diff options
context:
space:
mode:
Diffstat (limited to 'urwid/tests/test_container.py')
-rw-r--r--urwid/tests/test_container.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/urwid/tests/test_container.py b/urwid/tests/test_container.py
index 6ddb909..a8ed15b 100644
--- a/urwid/tests/test_container.py
+++ b/urwid/tests/test_container.py
@@ -314,8 +314,8 @@ class WidgetSquishTest(unittest.TestCase):
t(1, True)
def test_listbox(self):
- self.wstest(urwid.ListBox([]))
- self.wstest(urwid.ListBox([urwid.Text("hello")]))
+ self.wstest(urwid.ListBox(urwid.SimpleListWalker([])))
+ self.wstest(urwid.ListBox(urwid.SimpleListWalker([urwid.Text("hello")])))
def test_bargraph(self):
self.wstest(urwid.BarGraph(['foo','bar']))