Skip to content

Commit e8621d7

Browse files
committed
tests: use full named vars to please linters
1 parent 3e645a4 commit e8621d7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/fields/test_selectmultiple.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ def test_defaults():
2727
# Test for possible regression with null data
2828
form.a.data = None
2929
assert form.validate()
30-
assert list(form.a.iter_choices()) == [(v, l, False, {}) for v, l in form.a.choices]
30+
assert list(form.a.iter_choices()) == [
31+
(value, label, False, {}) for value, label in form.a.choices
32+
]
3133

3234

3335
def test_with_data():

0 commit comments

Comments
 (0)