Skip to content

Commit a3d4bf0

Browse files
committed
Fix flake8 code style: remove whitespace from blank lines
1 parent a9613fd commit a3d4bf0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def test_guess_method_none_with_request_items_raises_error(self):
320320
"""
321321
Regression test for #1614: method=None with request_items
322322
should give helpful error, not AssertionError.
323-
323+
324324
Tests that the problematic state doesn't trigger an AssertionError.
325325
The full CLI integration test below covers the actual error message.
326326
"""
@@ -333,7 +333,7 @@ def test_guess_method_none_with_request_items_raises_error(self):
333333
self.parser.args.ignore_stdin = False
334334
self.parser.env = MockEnvironment()
335335
self.parser.has_input_data = False
336-
336+
337337
# The key test: this should NOT raise AssertionError
338338
# (It will try to call self.error() which needs full parser setup,
339339
# but the important thing is the assertion is gone)
@@ -354,7 +354,7 @@ def test_bearer_auth_before_method_and_url_gives_error(self):
354354
args=['POST', '--auth-type', 'bearer', '--auth', 'test_token', 'https://example.org'],
355355
env=MockEnvironment()
356356
)
357-
357+
358358
# Should exit with error status, not AssertionError
359359
assert exc_info.value.code == 2
360360

0 commit comments

Comments
 (0)