Skip to content

Commit 1ba5746

Browse files
authored
fix typo in command line options (#13)
1 parent a63df6e commit 1ba5746

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ reporting:
7777
--httpdbg-no-clean do not clean the httpdbg directory
7878
7979
--httpdbg-allure save HTTP(S) traces into the allure report
80-
--httpdbg-no-headers save the HTTP headers
80+
--httpdbg-no-headers do not save the HTTP headers
8181
--httpdbg-no-binary do not save the HTTP payload if it's a binary content
8282
--httpdbg-only-on-failure save the HTTP requests only if the test failed
8383

pytest_httpdbg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
from pytest_httpdbg.plugin import httpdbg_record_filename # noqa F401
33

4-
__version__ = "0.8.0"
4+
__version__ = "0.8.1"

pytest_httpdbg/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def pytest_addoption(parser):
9393
"--httpdbg-no-headers",
9494
action="store_true",
9595
default=False,
96-
help="save the HTTP headers",
96+
help="do not save the HTTP headers",
9797
)
9898

9999
reporting_group.addoption(

0 commit comments

Comments
 (0)