Skip to content

Commit 1bd2c59

Browse files
committed
Move log cleansing to central place
1 parent 49e36d6 commit 1bd2c59

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

features/steps/generic_steps.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def call_command(context: Context, args: list[str], path: Optional[str] = ".") -
4545

4646
after = context.console.export_text()
4747
context.cmd_output = after[len(before) :].strip("\n")
48-
print(context.cmd_output)
4948

5049

5150
def check_file(path, content):
@@ -173,7 +172,7 @@ def check_output(context, line_count=None):
173172
patterns=[
174173
(git_hash, r"\1[commit-hash]\2"),
175174
(timestamp, "[timestamp]"),
176-
(dfetch_title, ""),
175+
(ansi_escape, ""),
177176
(svn_error, "svn: EXXXXXX: <some error text>"),
178177
],
179178
text=context.text,

0 commit comments

Comments
 (0)