File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ For example:
43
43
1 failed in 0.01 seconds
44
44
45
45
46
- **Disabling Loggin Capture **
46
+ **Disabling Logging Capture **
47
47
48
48
Qt logging capture can be disabled altogether by passing the ``--no-qt-log ``
49
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
88
89
89
def test_foo (qtlog ):
90
90
with qtlog.disabled():
91
- # logging is disable within the context manager
91
+ # logging is disabled within the context manager
92
92
do_something()
93
93
94
94
@pytest.mark.no_qt_log
95
95
def test_bar ():
96
- # logging disabled for the entire test
96
+ # logging is disabled for the entire test
97
97
do_something()
98
98
99
99
You can’t perform that action at this time.
0 commit comments