Skip to content

Commit a5a2f17

Browse files
committed
Test fixes
1 parent 2e10fb9 commit a5a2f17

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

atest/robot/output/LegacyOutputHelper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ def mask_changing_parts(path):
66
content = file.read()
77
for pattern, replace in [
88
(r'"20\d{6} \d{2}:\d{2}:\d{2}\.\d{3}"', '"[timestamp]"'),
9-
(r'generator=".*?"', 'generator="[generator]"')
9+
(r'generator=".*?"', 'generator="[generator]"'),
10+
(r'source=".*?"', 'source="[source]"')
1011
]:
1112
content = re.sub(pattern, replace, content)
1213
return content

utest/reporting/test_reporting.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ class StubSettings:
133133
statistics_config = {}
134134
xunit_skip_noncritical = False
135135
expand_keywords = None
136+
legacy_output = False
136137

137138
def __init__(self, **settings):
138139
self.__dict__.update(settings)

0 commit comments

Comments
 (0)