Other unit test fixes

This commit is contained in:
2025-11-08 23:10:27 +01:00
parent fdc58942eb
commit 255f145aca
3 changed files with 50 additions and 106 deletions

View File

@@ -268,8 +268,7 @@ class TestableFormUpdateFieldValues:
'''
form = TestableForm(mock_client, html)
assert "size" not in form.fields, \
f"Expected 'size' not in fields, got {form.fields}"
assert form.fields == {"size": None}, f"Expected 'size' not in fields, got {form.fields}"
def test_i_can_handle_number_input_with_integer(self, mock_client):
"""