diff --git a/tests/forms_tests/widget_tests/test_radioselect.py b/tests/forms_tests/widget_tests/test_radioselect.py
index fea26ce..7f87f79 100644
a
|
b
|
class RadioSelectTest(WidgetTest):
|
7 | 7 | widget = RadioSelect |
8 | 8 | |
9 | 9 | def test_render(self): |
10 | | self.check_html(self.widget(choices=self.beatles), 'beatle', 'J', html=( |
| 10 | choices = (('', '------'),) + self.beatles |
| 11 | self.check_html(self.widget(choices=choices), 'beatle', 'J', html=( |
11 | 12 | """<ul> |
| 13 | <li><label><input type="radio" name="beatle" value /> ------</label></li> |
12 | 14 | <li><label><input checked type="radio" name="beatle" value="J" /> John</label></li> |
13 | 15 | <li><label><input type="radio" name="beatle" value="P" /> Paul</label></li> |
14 | 16 | <li><label><input type="radio" name="beatle" value="G" /> George</label></li> |