Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tests/utils/log/test_secrets_masker.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ def test_exception_not_raised(self, logger, caplog):
"""
)

@pytest.mark.xfail(reason="Cannot filter secrets in traceback source")
def test_exc_tb(self, logger, caplog):
"""
Show it is not possible to filter secrets in the source.
Expand Down Expand Up @@ -142,7 +141,7 @@ def test_exc_tb(self, logger, caplog):
ERROR Err
Traceback (most recent call last):
File ".../test_secrets_masker.py", line {line}, in test_exc_tb
raise RuntimeError("Cannot connect to user:***)
raise RuntimeError("Cannot connect to user:password")
RuntimeError: Cannot connect to user:***
"""
)
Expand Down