We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d62c43e commit 7b70994Copy full SHA for 7b70994
1 file changed
docs/logging.rst
@@ -43,7 +43,7 @@ For example:
43
1 failed in 0.01 seconds
44
45
46
-**Disabling Loggin Capture**
+**Disabling Logging Capture**
47
48
Qt logging capture can be disabled altogether by passing the ``--no-qt-log``
49
to the command line, which will fallback to the default Qt bahavior of printing
@@ -88,12 +88,12 @@ context manager, or with the ``pytest.mark.no_qt_log`` mark:
88
89
def test_foo(qtlog):
90
with qtlog.disabled():
91
- # logging is disable within the context manager
+ # logging is disabled within the context manager
92
do_something()
93
94
@pytest.mark.no_qt_log
95
def test_bar():
96
- # logging disabled for the entire test
+ # logging is disabled for the entire test
97
98
99
0 commit comments