Show More
@@ -298,7 +298,7 b' def test_default_values():' | |||
|
298 | 298 | ) |
|
299 | 299 | |
|
300 | 300 | def test_default_out_of_bounds(): |
|
301 |
@annotate(f=(0, 10.), h={'a': 1 |
|
|
301 | @annotate(f=(0, 10.), h={'a': 1}, j=['hi', 'there']) | |
|
302 | 302 | def f(f='hi', h=5, j='other'): |
|
303 | 303 | pass |
|
304 | 304 | |
@@ -310,13 +310,13 b' def test_default_out_of_bounds():' | |||
|
310 | 310 | ), |
|
311 | 311 | h=dict( |
|
312 | 312 | cls=widgets.DropdownWidget, |
|
313 |
values={'a': 1 |
|
|
314 | value=1 | |
|
313 | values={'a': 1}, | |
|
314 | value=1, | |
|
315 | 315 | ), |
|
316 | 316 | j=dict( |
|
317 | 317 | cls=widgets.DropdownWidget, |
|
318 | 318 | values={'hi':'hi', 'there':'there'}, |
|
319 | value='hi' | |
|
319 | value='hi', | |
|
320 | 320 | ), |
|
321 | 321 | ) |
|
322 | 322 |
General Comments 0
You need to be logged in to leave comments.
Login now