Skip to content

Commit c9c8083

Browse files
committed
gh-135056: Put kwarg on its own line in mock assertion.
1 parent eac5c6a commit c9c8083

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/test/test_httpservers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,8 @@ def test_extra_response_headers_arg(self, _, mock_make_server):
15131513
# ensure extra_response_headers are passed to it
15141514
httpd.finish_request(mock.Mock(), '127.0.0.1')
15151515
mock_handler_init.assert_called_once_with(
1516-
mock.ANY, mock.ANY, mock.ANY, directory=mock.ANY,
1516+
mock.ANY, mock.ANY, mock.ANY,
1517+
directory=mock.ANY,
15171518
extra_response_headers=[
15181519
['Set-Cookie', 'k=v'], ['Set-Cookie', 'k2=v2']
15191520
]

0 commit comments

Comments
 (0)